:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #facc15;
  --accent-soft: rgba(250, 204, 21, 0.16);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #0f172a;
  --border-subtle: #1f2937;
  --danger: #ef4444;
  --radius-xl: 1.5rem;
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 40%, #000 100%);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background-color: rgba(2, 6, 23, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, #facc15 0, #f97316 50%, #b91c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #020617;
  box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.9);
}

.brand-logo-link {
  display: inline-block;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.9);
}

.brand-text-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #facc15);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.18s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.4);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.2), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background 0.16s ease-out, transform 0.12s ease-out, box-shadow 0.16s ease-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  color: var(--text-main);
}

.nav-cta-btn span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.nav-cta-btn:hover {
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.36), rgba(248, 250, 252, 0.01));
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.66);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.hero-kicker span.badge {
  background: rgba(250, 204, 21, 0.16);
  color: #fde68a;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.hero-title {
  font-size: clamp(2.4rem, 3.1vw + 1.3rem, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

.hero-title span.highlight {
  background: linear-gradient(to right, #f97316, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-subtitle strong {
  color: #e5e7eb;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.12s ease-out, box-shadow 0.16s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
  gap: 0.4rem;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0%, #facc15, #f97316);
  color: #111827;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.82);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.8);
}

.btn-ghost:hover {
  background: rgba(30, 64, 175, 0.65);
  border-color: rgba(191, 219, 254, 0.8);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: #e5e7eb;
}

.hero-card {
  background: radial-gradient(circle at top, #1f2937, #020617);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.23), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(250, 204, 21, 0.25), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.26), transparent 55%);
  opacity: 0.75;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.hero-chip {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
}

.hero-card-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}

.hero-card-specs dt {
  color: var(--text-muted);
}

.hero-card-specs dd {
  font-weight: 600;
  color: #e5e7eb;
}

.hero-card-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.hero-card-rate strong {
  font-size: 1.05rem;
  color: #facc15;
}

.hero-card-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.hero-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.hero-card-pill {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

/* Section wrapper */

section {
  padding: 2.8rem 0;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.6rem;
}

.section-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 26rem;
}

/* Fleet section */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--card-bg);
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  color: #e5e7eb;
}

.card ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.25rem;
}

.card ul li::before {
  content: "• ";
  color: #facc15;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  align-items: baseline;
}

.price-pill {
  background: rgba(250, 204, 21, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-weight: 600;
  color: #facc15;
  font-size: 0.82rem;
  border: 1px solid rgba(250, 204, 21, 0.6);
}

/* Service area */

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.pill-list span {
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.card-map {
  background: radial-gradient(circle at top, #1e293b, #020617);
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.9rem 1rem 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
}

.card-map h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.card-map p {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-core {
  background: #f97316;
  box-shadow: 0 0 0 3px rgba(248, 164, 92, 0.4);
}

.dot-state {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
  background: radial-gradient(circle at 20% 0%, rgba(250, 204, 21, 0.35), transparent);
}

.step strong {
  display: block;
  color: #e5e7eb;
  margin-bottom: 0.2rem;
}

/* Contact */

.contact-section {
  padding-bottom: 3.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.2rem 1.1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
  padding: 0.55rem 0.7rem;
  font: inherit;
  transition: border-color 0.2s ease-out;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(250, 204, 21, 0.6);
}

input:invalid:not(:focus):not(:placeholder-shown),
select:invalid:not(:focus),
textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(248, 113, 113, 0.7);
}

input:valid:not(:placeholder-shown),
select:valid,
textarea:valid:not(:placeholder-shown) {
  border-color: rgba(34, 197, 94, 0.5);
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.form-footer {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  max-width: 17rem;
}

.flash {
  display: none;
  margin-bottom: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.76rem;
}

.flash--ok {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.55);
  color: #bbf7d0;
}

.flash--error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.7);
  color: #fecaca;
}

.contact-aside {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.7rem;
}

.contact-aside h3 {
  font-size: 1rem;
  color: #e5e7eb;
}

.bullet {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 0.3rem;
  background: #facc15;
}

.bullet strong {
  color: #e5e7eb;
  display: block;
}

footer {
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  padding: 1.2rem 0 2.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-cta-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.4);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.2), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background 0.16s ease-out, transform 0.12s ease-out, box-shadow 0.16s ease-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  color: var(--text-main);
}

.footer-cta-btn span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.footer-cta-btn:hover {
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.36), rgba(248, 250, 252, 0.01));
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.66);
}

/* WooCommerce Styles */

.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  background: var(--card-bg);
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.woocommerce .price {
  color: #facc15;
  font-weight: 600;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
  background: radial-gradient(circle at 20% 0%, #facc15, #f97316);
  color: #111827;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  border: none;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: radial-gradient(circle at 20% 0%, #f97316, #facc15);
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 880px) {
  .hero-grid,
  .service-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  nav {
    position: fixed;
    inset: 56px 0 auto;
    padding: 0.6rem 1.25rem 0.9rem;
    background: radial-gradient(circle at top, #020617, #020617 55%, #000);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.4rem;
  }
}

