/*
Theme Name: efut
Theme URI: https://efileustax.com
Author: efilesutax
Author URI: https://efileustax.com
Description: Static homepage with external links only
Version: 2.0
*/
:root {
  --primary: #635bff;
  --primary-dark: #4f46e5;
  --primary-light: #eef0ff;

  --teal: #12b8a6;
  --teal-light: #e8faf7;

  --navy: #101828;
  --text: #344054;
  --muted: #667085;

  --white: #ffffff;
  --surface: #f8fafc;
  --surface-alt: #f3f5f9;

  --border: #e4e7ec;
  --border-light: #eef0f4;

  --success: #12b76a;
  --warning: #f79009;
  --danger: #f04438;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.04);

  --shadow-md: 0 12px 35px rgba(16, 24, 40, 0.08);

  --shadow-lg: 0 25px 70px rgba(16, 24, 40, 0.12);

  --container: 1180px;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));

  margin-inline: auto;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--navy);
  line-height: 1.15;
}

h1 span,
h2 span {
  color: var(--primary);
}

h1 {
  font-size: clamp(46px, 5.4vw, 76px);
  letter-spacing: -3px;
}

h2 {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -2px;
}

h3 {
  font-size: 21px;
}

p {
  color: var(--muted);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.7);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
}

.logo > span:last-child > span {
  color: var(--primary);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a,
.login-link {
  color: #475467;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.login-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mobile-menu {
  display: none;
  border: 0;
  background: transparent;
}

.mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  padding: 10px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 18px;
}

.btn-large {
  padding: 15px 23px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 25px rgba(99, 91, 255, 0.28);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.btn-light {
  background: white;
  color: var(--navy);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  background: transparent;
}

.full-width {
  width: 100%;
}

/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(18, 184, 166, 0.1);
}

.light-eyebrow {
  color: #aeb7ff;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 720px;
  padding: 105px 0 100px;
  position: relative;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(99, 91, 255, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
}

.hero-glow-one {
  background: var(--primary);
  top: -200px;
  left: -150px;
}

.hero-glow-two {
  background: var(--teal);
  right: -200px;
  bottom: -250px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 65px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  max-width: 650px;
}

.hero-description {
  max-width: 580px;
  margin: 28px 0 32px;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.hero-dashboard {
  position: relative;
  perspective: 1200px;
}

.dashboard-window {
  background: white;
  border: 1px solid #dde2ea;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
}

.dashboard-topbar {
  height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: var(--navy);
}

.mini-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--primary);
  color: white;
  font-size: 12px;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 13px;
}

.notification-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 125px 1fr;
  min-height: 400px;
}

.dashboard-sidebar {
  padding: 20px 10px;
  background: #fbfcfe;
  border-right: 1px solid var(--border);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 8px;
  color: #667085;
  font-size: 10px;
  font-weight: 500;
}

.sidebar-item span {
  width: 18px;
  text-align: center;
}

.sidebar-item.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.dashboard-main {
  padding: 23px;
  background: #fff;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-heading small,
.dashboard-heading h3 {
  display: block;
}

.dashboard-heading small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.dashboard-heading h3 {
  margin-top: 3px;
  font-size: 19px;
}

.dashboard-add {
  border: 0;
  border-radius: 7px;
  padding: 8px 12px;
  background: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-card {
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.metric-card small {
  display: block;
  color: #98a2b3;
  font-size: 7px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin: 4px 0;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.metric-card span {
  font-size: 8px;
  font-weight: 600;
}

.metric-positive {
  color: var(--success);
}

.metric-neutral {
  color: #667085;
}

.metric-warning {
  color: var(--warning);
}

.dashboard-columns {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  margin-top: 12px;
}

.activity-panel,
.mini-chart-panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.panel-header h4 {
  font-size: 11px;
}

.panel-header a,
.panel-header > span {
  color: var(--primary);
  font-size: 8px;
  font-weight: 600;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-top: 1px solid var(--border-light);
}

.activity-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 700;
}

.activity-icon.blue {
  background: var(--primary-light);
  color: var(--primary);
}

.activity-icon.green {
  background: var(--teal-light);
  color: var(--teal);
}

.activity-icon.purple {
  background: #f2edff;
  color: #8b5cf6;
}

.activity-icon.orange {
  background: #fff4e8;
  color: var(--warning);
}

.activity-row div {
  flex: 1;
}

.activity-row strong,
.activity-row small {
  display: block;
}

.activity-row strong {
  color: var(--navy);
  font-size: 9px;
}

.activity-row small {
  color: #98a2b3;
  font-size: 8px;
}

.activity-time {
  color: #98a2b3;
  font-size: 8px;
}

.chart {
  height: 100px;
  display: flex;
  align-items: flex-end;
  padding-top: 10px;
}

.chart-bars {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.chart-bars i {
  flex: 1;
  display: block;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--primary), #9b96ff);
}

.chart-days {
  display: flex;
  justify-content: space-between;
  color: #98a2b3;
  font-size: 7px;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: white;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.trust-label {
  color: #98a2b3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
  color: #98a2b3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 120px 0;
}

.light-section {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 650px;
  margin-inline: auto;
  font-size: 16px;
}

/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 65px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #d5d9ff;
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 700;
}

.blue-icon {
  color: var(--primary);
  background: var(--primary-light);
}

.teal-icon {
  color: var(--teal);
  background: var(--teal-light);
}

.purple-icon {
  color: #8b5cf6;
  background: #f2edff;
}

.orange-icon {
  color: var(--warning);
  background: #fff4e8;
}

.red-icon {
  color: var(--danger);
  background: #fff0ee;
}

.green-icon {
  color: var(--success);
  background: #eafbf2;
}

.cyan-icon {
  color: #0891b2;
  background: #e8f9fc;
}

.dark-icon {
  color: var(--navy);
  background: #eef1f5;
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 18px;
}

.feature-card p {
  min-height: 105px;
  font-size: 13px;
  line-height: 1.7;
}

.feature-card a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
   SHOWCASE SECTIONS
========================================================= */

.showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.showcase-grid > .showcase-visual {
  order: 2;
}

.showcase-grid > .showcase-content {
  order: 1;
}

.showcase-grid:not(.reverse-mobile) > .showcase-visual {
  order: 2;
}

.showcase-content h2 {
  max-width: 580px;
  margin-bottom: 22px;
}

.showcase-content > p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.8;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #475467;
  font-size: 13px;
  font-weight: 500;
}

.check-list li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.text-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   LOAD VISUAL
========================================================= */

.load-visual {
  padding: 20px;
}

.load-window {
  padding: 25px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.load-window-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 35px;
}

.load-window-header small,
.load-window-header h3 {
  display: block;
}

.load-window-header small {
  color: #98a2b3;
  font-size: 9px;
  font-weight: 700;
}

.load-window-header h3 {
  margin-top: 4px;
  font-size: 22px;
}

.status-badge {
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

.green-status {
  background: #eafbf2;
  color: var(--success);
}

.blue-status {
  background: var(--primary-light);
  color: var(--primary);
}

.route-line {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.route-point {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.route-point > span {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  flex: 0 0 10px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: white;
}

.route-point:last-child > span {
  border-color: var(--teal);
}

.route-point small,
.route-point strong {
  display: block;
}

.route-point small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.route-point strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 12px;
}

.route-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 5px;
}

.vehicle-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface);
  margin-bottom: 18px;
}

.vehicle-placeholder {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: white;
  font-size: 23px;
}

.vehicle-card small,
.vehicle-card strong,
.vehicle-card span {
  display: block;
}

.vehicle-card small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.vehicle-card strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 12px;
}

.vehicle-card span {
  color: #98a2b3;
  font-size: 9px;
}

.load-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.load-info-grid div {
  padding-right: 10px;
}

.load-info-grid small,
.load-info-grid strong {
  display: block;
}

.load-info-grid small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.load-info-grid strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 11px;
}

/* =========================================================
   DRIVER VISUAL
========================================================= */

.driver-visual {
  padding: 20px;
}

.trip-window {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-lg);
}

.trip-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.trip-header small,
.trip-header h3 {
  display: block;
}

.trip-header small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.trip-header h3 {
  margin-top: 4px;
  font-size: 19px;
}

.trip-driver {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  margin-top: 15px;
  border-bottom: 1px solid var(--border);
}

.driver-avatar-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.trip-driver small,
.trip-driver strong,
.trip-driver span {
  display: block;
}

.trip-driver small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.trip-driver strong {
  margin: 3px 0;
  color: var(--navy);
  font-size: 13px;
}

.trip-driver span {
  color: #98a2b3;
  font-size: 9px;
}

.trip-progress {
  padding: 22px 0;
}

.progress-header,
.progress-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-header {
  margin-bottom: 10px;
  color: #667085;
  font-size: 10px;
}

.progress-header strong {
  color: var(--primary);
}

.progress-track {
  height: 8px;
  border-radius: 10px;
  background: #eef1f5;
  overflow: hidden;
}

.progress-fill {
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

.progress-labels {
  margin-top: 7px;
  color: #98a2b3;
  font-size: 8px;
}

.trip-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trip-stats div {
  padding: 15px;
  border-radius: 10px;
  background: var(--surface);
  text-align: center;
}

.trip-stats strong,
.trip-stats span {
  display: block;
}

.trip-stats strong {
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.trip-stats span {
  color: #98a2b3;
  font-size: 8px;
}

/* =========================================================
   DIGITAL DOCUMENTS
========================================================= */

.digital-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(99, 91, 255, 0.18),
      transparent 30%
    ),
    var(--navy);
  color: white;
}

.digital-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.digital-content h2 {
  color: white;
  margin-bottom: 22px;
}

.digital-content h2 span {
  color: #aeb7ff;
}

.digital-content > p {
  max-width: 510px;
  margin-bottom: 30px;
  color: #98a2b3;
  font-size: 16px;
}

.document-stack {
  height: 400px;
  position: relative;
}

.document-card {
  position: absolute;
  width: 450px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 18px;
}

.document-back {
  height: 270px;
  top: 80px;
  background: #252d3d;
  transform: translateX(-50%) rotate(-7deg);
  border: 1px solid #344054;
  color: #667085;
  padding: 25px;
  font-size: 9px;
  font-weight: 700;
}

.document-middle {
  height: 270px;
  top: 60px;
  background: #313b4e;
  transform: translateX(-50%) rotate(4deg);
  border: 1px solid #475467;
  color: #98a2b3;
  padding: 25px;
  font-size: 9px;
  font-weight: 700;
}

.document-front {
  top: 35px;
  min-height: 300px;
  padding: 28px;
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.document-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.document-logo {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.document-top small,
.document-top strong {
  display: block;
}

.document-top small {
  color: #98a2b3;
  font-size: 7px;
  font-weight: 700;
}

.document-top strong {
  font-size: 14px;
}

.document-check {
  margin-left: auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eafbf2;
  color: var(--success);
  font-size: 10px;
}

.document-lines {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.document-lines i {
  height: 7px;
  display: block;
  border-radius: 4px;
  background: #eef1f5;
}

.document-lines i:nth-child(1) {
  width: 100%;
}

.document-lines i:nth-child(2) {
  width: 80%;
}

.document-lines i:nth-child(3) {
  width: 92%;
}

.document-lines i:nth-child(4) {
  width: 55%;
}

.document-signature {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.document-signature span,
.document-signature strong {
  display: block;
}

.document-signature span {
  color: #98a2b3;
  font-size: 8px;
}

.document-signature strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 12px;
}

.digital-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.digital-features > div {
  display: flex;
  gap: 12px;
}

.small-feature-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(99, 91, 255, 0.15);
  color: #aeb7ff;
}

.digital-features strong {
  color: white;
  font-size: 14px;
}

.digital-features p {
  margin-top: 4px;
  color: #667085;
  font-size: 12px;
}

/* =========================================================
   EXPENSES
========================================================= */

.expense-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.expense-visual {
  padding: 20px;
}

.expense-card {
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow-lg);
}

.expense-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.expense-header small,
.expense-header h3 {
  display: block;
}

.expense-header small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.expense-header h3 {
  margin-top: 4px;
  font-size: 19px;
}

.expense-header button {
  border: 0;
  padding: 8px 11px;
  border-radius: 7px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 8px;
  font-weight: 700;
}

.expense-total {
  margin-top: 30px;
  padding: 18px;
  border-radius: 12px;
  background: var(--surface);
}

.expense-total small,
.expense-total strong {
  display: block;
}

.expense-total small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.expense-total strong {
  margin-top: 4px;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.expense-breakdown {
  margin-top: 20px;
}

.expense-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: #475467;
  font-size: 11px;
}

.expense-row div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.expense-row strong {
  color: var(--navy);
}

.expense-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fuel-dot {
  background: var(--primary);
}

.toll-dot {
  background: var(--teal);
}

.maintenance-dot {
  background: var(--warning);
}

.other-dot {
  background: #8b5cf6;
}

.expense-chart {
  height: 10px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef1f5;
}

.expense-chart-fill {
  width: 73%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

.expense-flow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.expense-flow i {
  color: #98a2b3;
  font-style: normal;
}

.small-note {
  color: #98a2b3;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

/* =========================================================
   BILLING
========================================================= */

.billing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.invoice-visual {
  padding: 20px;
}

.invoice-card {
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.invoice-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.invoice-brand span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: white;
}

.invoice-number {
  text-align: right;
}

.invoice-number small,
.invoice-number strong {
  display: block;
}

.invoice-number small {
  color: #98a2b3;
  font-size: 8px;
}

.invoice-number strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 13px;
}

.invoice-client {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.invoice-client small,
.invoice-client strong {
  display: block;
}

.invoice-client small {
  color: #98a2b3;
  font-size: 8px;
}

.invoice-client strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 12px;
}

.invoice-status {
  padding: 7px 9px;
  border-radius: 20px;
  background: #fff4e8;
  color: var(--warning);
  font-size: 8px;
  font-weight: 700;
}

.invoice-table {
  border-top: 1px solid var(--border);
}

.invoice-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-light);
  color: #667085;
  font-size: 10px;
}

.invoice-line strong {
  color: var(--navy);
}

.invoice-heading {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.invoice-total {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: var(--navy);
}

.invoice-total strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

/* =========================================================
   ANALYTICS
========================================================= */

.analytics-section {
  background: white;
}

.analytics-dashboard {
  margin-top: 60px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.analytics-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.analytics-top small,
.analytics-top h3 {
  display: block;
}

.analytics-top small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.analytics-top h3 {
  margin-top: 4px;
  font-size: 20px;
}

.analytics-top button {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  background: white;
  color: #667085;
  font-size: 9px;
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.analytics-metric {
  padding: 18px;
  border-radius: 12px;
  background: var(--surface);
}

.analytics-metric small,
.analytics-metric strong,
.analytics-metric span {
  display: block;
}

.analytics-metric small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.analytics-metric strong {
  margin: 5px 0;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.analytics-metric span {
  color: var(--success);
  font-size: 9px;
  font-weight: 700;
}

.analytics-bottom {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: 15px;
  margin-top: 15px;
}

.large-chart,
.performance-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-title small,
.chart-title strong {
  display: block;
}

.chart-title small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.chart-title strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 13px;
}

.chart-title > span {
  color: var(--primary);
  font-size: 9px;
  font-weight: 700;
}

.large-chart-area {
  display: flex;
  height: 230px;
  margin-top: 25px;
}

.y-axis {
  width: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #98a2b3;
  font-size: 8px;
}

.line-chart {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    to bottom,
    transparent 24%,
    #f2f4f7 25%,
    transparent 26%,
    transparent 49%,
    #f2f4f7 50%,
    transparent 51%,
    transparent 74%,
    #f2f4f7 75%,
    transparent 76%
  );
}

.line-chart svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
}

.performance-card > small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.performance-circle {
  width: 130px;
  height: 130px;
  margin: 25px auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  border: 12px solid var(--primary-light);
  box-shadow: inset 0 0 0 7px white;
}

.performance-circle strong {
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.performance-circle span {
  color: #98a2b3;
  font-size: 9px;
}

.performance-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--border-light);
  color: #667085;
  font-size: 9px;
}

.performance-row strong {
  color: var(--navy);
}

.demo-disclaimer {
  margin-top: 15px;
  text-align: center;
  color: #98a2b3;
  font-size: 9px;
}

/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
  background: var(--surface);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.role-card {
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: 0.25s ease;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.featured-role {
  border-color: #d5d9ff;
  box-shadow: var(--shadow-sm);
}

.role-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--primary-light);
  font-size: 20px;
}

.role-card h3 {
  margin-bottom: 10px;
}

.role-card p {
  min-height: 95px;
  font-size: 13px;
}

.role-card a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
   MARKETPLACE
========================================================= */

.marketplace-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.marketplace-content h2 {
  margin-bottom: 22px;
}

.marketplace-content > p {
  max-width: 500px;
  margin-bottom: 28px;
  font-size: 16px;
}

.marketplace-board {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.board-header small,
.board-header strong {
  display: block;
}

.board-header small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.board-header strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
}

.board-search {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: #98a2b3;
  font-size: 8px;
}

.load-list {
  border-top: 1px solid var(--border);
}

.marketplace-load {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.marketplace-route {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 10px;
}

.marketplace-route span {
  color: var(--primary);
}

.marketplace-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.marketplace-details span {
  padding: 5px 7px;
  border-radius: 5px;
  background: var(--surface);
  color: #667085;
  font-size: 7px;
}

.marketplace-price {
  text-align: right;
}

.marketplace-price strong {
  display: block;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

.marketplace-price button {
  margin-top: 5px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 8px;
  font-weight: 700;
}

.board-footer {
  padding-top: 15px;
  color: #98a2b3;
  text-align: center;
  font-size: 8px;
}

/* =========================================================
   SECURITY
========================================================= */

.security-section {
  background:
    radial-gradient(
      circle at 10% 80%,
      rgba(99, 91, 255, 0.18),
      transparent 35%
    ),
    var(--navy);
}

.security-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.security-content h2 {
  color: white;
  margin-bottom: 22px;
}

.security-content h2 span {
  color: #aeb7ff;
}

.security-content > p {
  max-width: 500px;
  margin-bottom: 30px;
  color: #98a2b3;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.security-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.security-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(99, 91, 255, 0.15);
  color: #aeb7ff;
}

.security-card h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 9px;
}

.security-card p {
  color: #667085;
  font-size: 11px;
  line-height: 1.7;
}

/* =========================================================
   DEVICES
========================================================= */
/* =========================================
   DEVICE PRODUCT UI
========================================= */

.devices-section {
  overflow: hidden;
}

.devices-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 0.72fr;
  gap: 24px;
  align-items: end;
  margin-top: 70px;
}

.device-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #101418;
  padding: 18px;
  overflow: hidden;
}

.device-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.device-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ff6b3d;
  font-size: 16px;
}

.device-label strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.device-label small {
  display: block;
  color: #6f7882;
  font-size: 11px;
  margin-top: 2px;
}

/* =========================================
   DESKTOP
========================================= */

.desktop-screen {
  background: #0b0f12;
  border: 1px solid #252c32;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.fake-browser-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: #171c20;
  border-bottom: 1px solid #252b30;
}

.fake-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555d64;
}

.fake-browser-bar b {
  margin-left: 8px;
  color: #69727a;
  font-size: 8px;
  font-weight: 500;
}

.desktop-app {
  display: flex;
  min-height: 310px;
}

.app-sidebar {
  width: 112px;
  flex-shrink: 0;
  background: #0f1418;
  border-right: 1px solid #22282d;
  padding: 14px 9px;
}


.mini-logo span {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #ff6b3d;
}

.side-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 7px;
  margin-bottom: 3px;
  border-radius: 6px;
  color: #657079;
  font-size: 7px;
}

.side-nav i {
  font-style: normal;
  font-size: 9px;
}

.side-nav.active {
  background: rgba(255, 107, 61, 0.12);
  color: #ff805c;
}

.app-main {
  flex: 1;
  padding: 17px;
  min-width: 0;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.mini-overline {
  display: block;
  color: #59636b;
  font-size: 6px;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.app-header strong {
  color: #e8ecef;
  font-size: 11px;
}

.mini-avatar,
.tablet-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #293137;
  color: #fff;
  font-size: 7px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 12px;
}

.mini-metric {
  padding: 9px;
  border: 1px solid #222a2f;
  background: #11171b;
  border-radius: 7px;
}

.mini-metric small {
  display: block;
  color: #626d75;
  font-size: 6px;
  margin-bottom: 4px;
}

.mini-metric strong {
  display: block;
  color: #edf0f2;
  font-size: 13px;
}

.mini-metric .positive {
  color: #5ebc8b;
  font-size: 6px;
}

.shipment-panel {
  border: 1px solid #222a2f;
  border-radius: 8px;
  overflow: hidden;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #20272c;
}

.panel-heading strong {
  color: #dce1e4;
  font-size: 8px;
}

.panel-heading span {
  color: #ff7050;
  font-size: 6px;
}

.shipment-head,
.shipment-row {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr 0.7fr;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
}

.shipment-head {
  background: #0e1316;
  color: #555f67;
  font-size: 5px;
}

.shipment-row {
  border-top: 1px solid #1d2428;
  color: #89939b;
  font-size: 6px;
}

.shipment-row strong {
  color: #d6dce0;
  font-size: 6px;
}

.status {
  width: max-content;
  padding: 3px 5px;
  border-radius: 20px;
  font-size: 5px;
  font-style: normal;
}

.status.transit {
  color: #65b4e5;
  background: rgba(65, 150, 210, 0.1);
}

.status.pickup {
  color: #f0b85b;
  background: rgba(240, 184, 91, 0.1);
}

.status.delivered {
  color: #61c38e;
  background: rgba(97, 195, 142, 0.1);
}

/* =========================================
   TABLET
========================================= */

.tablet-screen {
  background: #0b0f12;
  border: 1px solid #252c32;
  border-radius: 13px;
  padding: 12px;
  min-height: 355px;
}

.tablet-interface {
  height: 100%;
  background: #101519;
  border-radius: 8px;
  padding: 14px;
}

.tablet-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.tablet-topbar small {
  display: block;
  color: #ff6b3d;
  font-size: 5px;
  letter-spacing: 0.15em;
}

.tablet-topbar strong {
  color: #eef1f3;
  font-size: 13px;
}

.tablet-search {
  padding: 8px 10px;
  border-radius: 6px;
  background: #171e22;
  color: #59636b;
  font-size: 7px;
  margin-bottom: 12px;
}

.tablet-search span {
  color: #8b959d;
  margin-right: 5px;
}

.tablet-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 17px;
}

.tablet-stat-row div {
  padding: 9px;
  border-radius: 7px;
  background: #151c20;
  border: 1px solid #222a2f;
}

.tablet-stat-row small {
  display: block;
  color: #5e6971;
  font-size: 5px;
  margin-bottom: 3px;
}

.tablet-stat-row strong {
  color: #e8ecef;
  font-size: 13px;
}

.tablet-section-title {
  display: flex;
  justify-content: space-between;
  color: #dbe0e3;
  font-size: 8px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tablet-section-title span {
  color: #5b666e;
}

.tablet-load {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  background: #141b1f;
  border: 1px solid #222a2f;
  border-radius: 7px;
  margin-bottom: 6px;
}

.load-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #20282d;
  font-size: 11px;
}

.load-info {
  flex: 1;
  min-width: 0;
}

.load-info strong {
  display: block;
  color: #dfe4e7;
  font-size: 7px;
}

.load-info small {
  color: #657079;
  font-size: 6px;
}

.load-status {
  text-align: right;
}

.load-status b {
  display: block;
  color: #ff7454;
  font-size: 8px;
}

.load-status span {
  color: #657079;
  font-size: 5px;
}

/* =========================================
   MOBILE PHONE
========================================= */

.phone-wrapper {
  display: flex;
  justify-content: center;
  padding: 5px 0 0;
}

.phone-device {
  width: 205px;
  height: 390px;
  padding: 8px;
  border-radius: 28px;
  background: #080b0d;
  border: 2px solid #30373c;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px #12171a;
  position: relative;
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 17px;
  border-radius: 20px;
  background: #080b0d;
}

.phone-interface {
  height: 100%;
  border-radius: 21px;
  background: #101519;
  overflow: hidden;
  padding: 12px;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  color: #8b949b;
  font-size: 6px;
  padding: 1px 3px 17px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.phone-header small {
  display: block;
  color: #68737b;
  font-size: 5px;
  margin-bottom: 3px;
}

.phone-header strong {
  color: #edf0f2;
  font-size: 14px;
}

.driver-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #273036;
  color: #fff;
  font-size: 7px;
}

.active-load-card {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(145deg, #20282d, #151b1f);
  border: 1px solid #323b41;
  margin-bottom: 10px;
}

.load-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.load-card-top span {
  color: #7a858d;
  font-size: 5px;
  letter-spacing: 0.1em;
}

.load-card-top b {
  color: #ff7251;
  font-size: 8px;
}

.active-load-card > strong {
  display: block;
  color: #f1f3f4;
  font-size: 12px;
  margin-bottom: 13px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 7px;
}

.route-point i {
  width: 7px;
  height: 7px;
  border: 2px solid #ff704f;
  border-radius: 50%;
}

.route-point:last-child i {
  border-color: #61c38e;
}

.route-point small {
  display: block;
  color: #69747b;
  font-size: 5px;
}

.route-point strong {
  color: #dce1e4;
  font-size: 7px;
}

.route-progress {
  width: 1px;
  height: 15px;
  background: #3a444a;
  margin: 2px 0 2px 3px;
}

.eta-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #30383d;
  margin-top: 11px;
  padding-top: 9px;
}

.eta-row span {
  color: #68737b;
  font-size: 5px;
}

.eta-row strong {
  color: #dfe4e7;
  font-size: 6px;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.phone-actions div {
  text-align: center;
  padding: 7px 3px;
  border: 1px solid #252e33;
  background: #151b1f;
  border-radius: 7px;
}

.phone-actions span {
  display: block;
  color: #ff7352;
  font-size: 11px;
  margin-bottom: 3px;
}

.phone-actions small {
  color: #78838a;
  font-size: 5px;
}

.phone-actions .epod {
  background: rgba(97, 195, 142, 0.08);
  border-color: rgba(97, 195, 142, 0.2);
}

.phone-actions .epod span {
  color: #61c38e;
}

.phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px;
  border-radius: 7px;
  background: #151b1f;
  border: 1px solid #252e33;
  margin-bottom: 6px;
}

.phone-card small {
  display: block;
  color: #68737b;
  font-size: 5px;
  margin-bottom: 3px;
}

.phone-card strong {
  color: #dce1e4;
  font-size: 7px;
}

.live-dot {
  color: #61c38e;
  font-size: 5px;
  font-weight: 700;
}

.document-card {
  justify-content: flex-start;
  gap: 8px;
}

.document-icon {
  color: #ff7352;
  font-size: 13px;
}

.document-card b {
  margin-left: auto;
  color: #657079;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {
  .devices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-device {
    grid-column: 1 / -1;
  }

  .desktop-app {
    min-height: 290px;
  }
}

@media (max-width: 700px) {
  .devices-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 45px;
  }

  .desktop-device {
    grid-column: auto;
  }

  .desktop-screen {
    overflow-x: auto;
  }

  .desktop-app {
    min-width: 520px;
  }

  .tablet-screen {
    min-height: 320px;
  }

  .phone-device {
    width: 190px;
    height: 370px;
  }
}
/* 
    .devices-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 0.75fr;
      align-items: end;
      gap: 20px;
      margin-top: 65px;
    }

    .device-card {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--surface);
    }

    .device-label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .device-icon {
      width: 35px;
      height: 35px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: var(--primary-light);
      color: var(--primary);
    }

    .device-label strong,
    .device-label small {
      display: block;
    }

    .device-label strong {
      color: var(--navy);
      font-size: 12px;
    }

    .device-label small {
      color: #98a2b3;
      font-size: 8px;
    }

    .device-screen {
      background: white;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .desktop-screen {
      height: 260px;
      border-radius: 10px;
    }

    .fake-browser-bar {
      height: 28px;
      display: flex;
      align-items: center;
      gap: 5px;
      padding-left: 10px;
      background: #f4f5f7;
    }

    .fake-browser-bar span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #d0d5dd;
    }

    .fake-dashboard {
      display: grid;
      grid-template-columns: 55px 1fr;
      height: calc(100% - 28px);
    }

    .fake-side {
      background: #f8fafc;
      border-right: 1px solid var(--border);
    }

    .fake-content {
      padding: 15px;
    }

    .fake-title {
      width: 35%;
      height: 12px;
      border-radius: 5px;
      background: #e4e7ec;
    }

    .fake-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      margin-top: 15px;
    }

    .fake-metrics i {
      height: 45px;
      border-radius: 7px;
      background: var(--primary-light);
    }

    .fake-table {
      display: grid;
      gap: 7px;
      margin-top: 15px;
    }

    .fake-table i {
      height: 18px;
      border-radius: 4px;
      background: #f2f4f7;
    }

    .tablet-screen {
      height: 220px;
      border-radius: 12px;
      padding: 12px;
    }

    .tablet-interface {
      height: 100%;
      padding: 15px;
      border-radius: 8px;
      background: #f8fafc;
    }

    .tablet-top {
      width: 40%;
      height: 10px;
      border-radius: 4px;
      background: #d0d5dd;
    }

    .tablet-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 15px;
    }

    .tablet-stat-row i {
      height: 45px;
      border-radius: 6px;
      background: var(--primary-light);
    }

    .tablet-list {
      display: grid;
      gap: 7px;
      margin-top: 12px;
    }

    .tablet-list i {
      height: 24px;
      border-radius: 5px;
      background: white;
      border: 1px solid var(--border);
    }

    .phone-wrapper {
      display: flex;
      justify-content: center;
    }

    .phone-device {
      width: 145px;
      height: 280px;
      padding: 10px;
      position: relative;
      border-radius: 24px;
      background: #161d2b;
      box-shadow: 0 20px 40px rgba(16, 24, 40, 0.15);
    }

    .phone-notch {
      position: absolute;
      top: 7px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 13px;
      border-radius: 10px;
      background: #0b1018;
    }

    .phone-interface {
      height: 100%;
      padding: 35px 10px 10px;
      border-radius: 17px;
      background: white;
    }

    .phone-heading {
      width: 50%;
      height: 8px;
      border-radius: 4px;
      background: #d0d5dd;
    }

    .phone-card {
      display: grid;
      gap: 5px;
      padding: 10px;
      margin-top: 12px;
      border-radius: 7px;
      background: #f8fafc;
    }

    .phone-card i {
      height: 5px;
      border-radius: 3px;
      background: #e4e7ec;
    }

    .phone-card i:first-child {
      width: 70%;
    }

    .phone-card i:last-child {
      width: 50%;
    } */

/* =========================================================
   PRICING
========================================================= */

.pricing-section {
  background: var(--surface);
}

.pricing-container {
  max-width: 1120px;
}

.pricing-heading {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.pricing-heading h2 {
  margin-bottom: 18px;
}

.pricing-heading p {
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.pricing-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
}

.featured-pricing {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(99, 91, 255, 0.13);
}

.popular-label {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--primary);
  color: white;
  font-size: 8px;
  font-weight: 700;
}

.pricing-tag {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pricing-card h3 {
  margin-top: 10px;
  font-size: 21px;
}

.pricing-card > p {
  margin-top: 8px;
  min-height: 45px;
  font-size: 12px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 25px 0;
}

.price strong {
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
}

.price span {
  color: #98a2b3;
  font-size: 10px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.pricing-card li {
  color: #667085;
  font-size: 11px;
}

.pricing-card li::first-letter {
  color: var(--teal);
}

.pricing-note {
  margin-top: 25px;
  text-align: center;
  color: #98a2b3;
  font-size: 9px;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 91, 255, 0.3), transparent 40%),
    var(--navy);
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--primary);
  filter: blur(130px);
  opacity: 0.12;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.cta-content h2 {
  color: white;
  margin-bottom: 22px;
}

.cta-content h2 span {
  color: #aeb7ff;
}

.cta-content > p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: #98a2b3;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-content > small {
  display: block;
  margin-top: 25px;
  color: #667085;
  font-size: 9px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 70px 0 25px;
  background: #0b111c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 45px;
}

.footer-logo {
  color: white;
}

.footer-brand > p {
  max-width: 280px;
  margin-top: 18px;
  color: #667085;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #98a2b3;
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h4 {
  margin-bottom: 6px;
  color: white;
  font-size: 14px;
}

.footer-column a {
  color: #667085;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #aeb7ff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #475467;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: white;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-dashboard {
    max-width: 850px;
    width: 100%;
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .expense-grid,
  .billing-grid,
  .digital-grid,
  .security-grid,
  .marketplace-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .showcase-content {
    max-width: 700px;
  }

  .showcase-grid > .showcase-visual,
  .showcase-grid > .showcase-content {
    order: unset;
  }

  .showcase-visual {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .digital-content,
  .security-content,
  .marketplace-content {
    max-width: 700px;
  }

  .digital-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-device {
    grid-column: span 2;
    width: 50%;
    margin-inline: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
    margin-top: 55px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: span 3;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 68px;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 75px 0 70px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-trust {
    gap: 9px 14px;
  }

  .dashboard-window {
    transform: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 15px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-columns {
    grid-template-columns: 1fr;
  }

  .trust-content {
    flex-direction: column;
    text-align: center;
  }

  .trust-items {
    justify-content: center;
    gap: 15px;
  }

  .section {
    padding: 80px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .feature-card p {
    min-height: auto;
  }

  .showcase-grid,
  .expense-grid,
  .billing-grid,
  .digital-grid,
  .security-grid,
  .marketplace-grid {
    gap: 45px;
  }

  .load-window,
  .trip-window,
  .expense-card,
  .invoice-card {
    padding: 18px;
  }

  .route-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-progress {
    width: 3px;
    height: 25px;
    margin-left: 4px;
  }

  .load-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .document-stack {
    height: 350px;
  }

  .document-card {
    width: 100%;
  }

  .digital-features {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .analytics-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .analytics-bottom {
    grid-template-columns: 1fr;
  }

  .analytics-dashboard {
    padding: 15px;
  }

  .large-chart-area {
    height: 180px;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .role-card p {
    min-height: auto;
    margin-bottom: 20px;
  }

  .marketplace-load {
    grid-template-columns: 1fr;
  }

  .marketplace-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .marketplace-price button {
    margin-top: 0;
  }

  .devices-grid {
    grid-template-columns: 1fr;
  }

  .mobile-device {
    grid-column: auto;
    width: 100%;
  }

  .pricing-card {
    padding: 25px;
  }

  .final-cta {
    padding: 85px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metric-grid {
    gap: 7px;
  }

  .metric-card {
    padding: 10px;
  }

  .metric-card strong {
    font-size: 19px;
  }

  .document-front {
    padding: 20px;
  }

  .analytics-metrics {
    grid-template-columns: 1fr;
  }

  .board-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .board-search {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}
