/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d232b;
  --muted: #5c6670;
  --sand: #f3f1ee;
  --ocean: #0f4c5c;
  --rust: #b56a4a;
  --fog: #eef2f4;
  --accent: #1b6ca8;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 0 120px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual,
.panel-visual,
.card-image,
.inline-visual {
  background-color: var(--fog);
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero {
  padding: 48px 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn.secondary {
  background: #ffffff;
  color: var(--ocean);
  border: 1px solid var(--ocean);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.text-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.section-muted {
  background: var(--sand);
  padding: 40px 0;
}

.section-dark {
  background: var(--ocean);
  color: #ffffff;
  padding: 40px 0;
}

.bg-journey {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #dfe6ea;
}

.bg-fleet {
  background-image: url("https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e5e2dd;
}

.bg-overlay {
  background-color: rgba(15, 76, 92, 0.85);
  padding: 40px 0;
}

.section-dark a {
  color: #ffffff;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4e6ea;
  flex-wrap: wrap;
}

.pricing-item span {
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6dc;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  background: var(--fog);
  padding: 32px 0 80px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e4e6ea;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  z-index: 20;
}

.sticky-cta p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.inline-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.image-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.image-strip .inline-visual {
  flex: 1 1 220px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.small-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 8px;
  }
}
