
:root {
  --color-bg: #020817;
  --color-card: #071326;
  --color-accent: #17A2B8;
  --color-accent-soft: rgba(23, 162, 184, 0.16);
  --color-text: #f9fafb;
  --color-muted: #9ca3af;
  --color-border: #1f2933;
  --color-highlight: #0A3D62;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.45);
  --shadow-subtle: 0 10px 25px rgba(0,0,0,0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0b1220 0, #020617 40%, #020617 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2,6,23,0.92), rgba(2,6,23,0.7), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 10% 0, #38bdf8, #0f766e 36%, #0A3D62 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #e5f7ff;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.5);
}

.logo-text {
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--color-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0EA5E9);
  color: #0b1220;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.5);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: #e0faff;
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  padding-inline: 1.1rem;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: #e0f7ff;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  color: var(--color-muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin: 1.7rem 0 1.1rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-meta div::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--color-accent);
}

/* Hero Card */

.hero-card {
  background: radial-gradient(circle at top left, #0b1220, #020617 55%, #020617 100%);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.3rem 1.4rem 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 0, rgba(56,189,248,0.09) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(45,212,191,0.07) 0, transparent 55%);
  pointer-events: none;
}

.hero-card-header {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.hero-map {
  position: relative;
  height: 150px;
  border-radius: 20px;
  background-image: radial-gradient(circle at top, #0f172a 0, #020617 55%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
  margin-bottom: 1rem;
}

.hero-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, rgba(148,163,184,0.15) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148,163,184,0.15) 1px, transparent 1px);
  background-size: 18px 18px;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f9fafb, #38bdf8 75%);
  box-shadow: 0 0 0 5px rgba(56,189,248,0.3);
}

.pin-1 { top: 26%; left: 21%; }
.pin-2 { top: 55%; left: 67%; }
.pin-3 { top: 38%; left: 44%; }

.hero-card-body {
  display: grid;
  gap: 0.35rem;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.stat-row strong {
  color: #e5e7eb;
  font-size: 0.95rem;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(2,6,23,1));
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 0.95rem;
  max-width: 38rem;
}

.card-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.96));
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.1rem 1.1rem 1.05rem;
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.step {
  background: rgba(15,23,42,0.92);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148,163,184,0.18);
  padding: 1.1rem 1.1rem 1.05rem;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Pricing */

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.9rem;
}

.pricing-card {
  background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.97));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148,163,184,0.2);
  padding: 1.3rem 1.2rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-highlight {
  border-color: rgba(56,189,248,0.6);
  box-shadow: 0 22px 60px rgba(56,189,248,0.25);
}

.badge {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(56,189,248,0.14);
  color: #e0f7ff;
  border: 1px solid rgba(56,189,248,0.5);
}

.price {
  font-size: 1.6rem;
  margin: 0.2rem 0 0.9rem;
}

.price span {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-left: 0.3rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.feature-list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.feature-list li::before {
  content: "•";
  color: var(--color-accent);
  font-size: 0.9rem;
}

.pricing-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* Contact */

.contact-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.contact-list li + li {
  margin-top: 0.25rem;
}

.contact-form {
  background: rgba(15,23,42,0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148,163,184,0.25);
  padding: 1.3rem 1.2rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
  color: var(--color-muted);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(55,65,81,0.9);
  background: rgba(15,23,42,0.95);
  padding: 0.55rem 0.7rem;
  color: var(--color-text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(148,163,184,0.7);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.4);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  background: #020617;
  padding: 0.9rem 0 1.1rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.footer-right {
  opacity: 0.85;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

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

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

  .pricing-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .card-grid,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .container {
    padding-inline: 1.1rem;
  }

  .hero-card {
    margin-top: 0.6rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
  }
}


/* Fletnex Hero Background */
.hero {
    background: url('truck-bg.png') center/cover no-repeat fixed, 
                radial-gradient(circle at top left, #0b1220 0, #020617 40%, #020617 100%);
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
