:root {
  --ink: #ffffff;
  --muted: #c5c8cc;
  --bg: #080808;
  --panel: rgba(15, 15, 15, 0.88);
  --line: rgba(255, 255, 255, 0.16);
  --cyan: #e0000b;
  --cyan-strong: #ff202b;
  --red: #e0000b;
  --steel: #8f949a;
  --white: #ffffff;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #080808 0%, #151515 48%, #050505 100%);
  color: var(--ink);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 8px clamp(18px, 4vw, 64px);
  background: #050505;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 280px);
  aspect-ratio: 192 / 65;
  height: auto;
  max-height: 96px;
  border: 0;
  background: transparent;
  object-fit: contain;
  filter: none;
}

.brand-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  color: #f3f3f3;
  font-size: 14px;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.18);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.7) 38%, rgba(3, 3, 3, 0.28) 76%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.24) 0%, rgba(3, 3, 3, 0) 56%, #080808 100%),
    radial-gradient(circle at 12% 50%, rgba(224, 0, 11, 0.28), transparent 34rem);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(224, 0, 11, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 860px;
  min-height: 92vh;
  padding: 120px clamp(18px, 6vw, 86px) 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.9;
}

h2 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.lead {
  max-width: 710px;
  color: #eeeeee;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(15, 15, 15, 0.82);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-strong);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #f2111d, #8d0007);
  box-shadow: 0 0 34px rgba(224, 0, 11, 0.3);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.07);
}

.signal-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #d9eef4;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: #090909;
}

.trust-strip span {
  flex: 1 0 auto;
  min-width: 110px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  color: #c4dae2;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.section,
.rental-section,
.process,
.quote-section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
}

.intro p:last-child,
.section-head p,
.seo-copy p,
.quote-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 34px;
}

.service-grid,
.rental-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.rental-grid article,
.steps article,
.quote-form {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 430px;
  padding: 28px;
}

.service-card::before,
.rental-grid article::before,
.steps article::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent, var(--red));
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(224, 0, 11, 0.52);
  color: var(--cyan-strong);
  font-weight: 900;
}

.service-card p,
.service-card li,
.rental-grid p,
.steps p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  padding-left: 18px;
  margin: 22px 0 0;
}

.rental-section {
  background:
    linear-gradient(90deg, rgba(224, 0, 11, 0.12), transparent 46%),
    #101010;
}

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

.rental-grid article {
  min-height: 260px;
  padding: 34px;
}

.rental-tag {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 79, 95, 0.38);
  color: #ffb6bd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-section {
  overflow: hidden;
}

.route-board {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 36px;
}

.route-core {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(224, 0, 11, 0.38);
  background:
    radial-gradient(circle at center, rgba(224, 0, 11, 0.28), transparent 64%),
    rgba(14, 14, 14, 0.94);
}

.route-core span,
.route-core small {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.route-core strong {
  margin: 12px 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.route-core strong a:hover {
  color: var(--cyan-strong);
}

.route-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.route-list span,
.route-list a {
  display: grid;
  place-items: center;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: #ddf4fb;
  font-weight: 900;
}

.route-list a:hover {
  border-color: rgba(224, 0, 11, 0.55);
  background: rgba(224, 0, 11, 0.12);
}

.city-hero {
  display: grid;
  align-items: center;
  min-height: 76vh;
  padding: 140px clamp(18px, 6vw, 86px) 80px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.7)),
    url("assets/cengo-transporte-hero.png") center / cover;
}

.city-hero > div {
  max-width: 860px;
}

.city-content {
  background: #080808;
}

.city-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-content .city-service-grid .service-card {
  --city-visual-top: 210px;
  --city-visual-height: clamp(230px, 17vw, 330px);
  min-height: calc(var(--city-visual-top) + var(--city-visual-height) + 26px);
  overflow: hidden;
  padding: 36px 28px;
}

.city-content .city-service-grid .service-card .icon {
  display: none;
}

.city-content .city-service-grid .service-card > * {
  position: relative;
  z-index: 2;
}

.city-content .city-service-grid .service-card::after {
  position: absolute;
  top: var(--city-visual-top);
  right: 10px;
  left: 10px;
  height: var(--city-visual-height);
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #080808;
  background-image: url("assets/kachel-autotransport.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(224, 0, 11, 0.24);
}

.city-content .city-service-grid .service-card:nth-child(2)::after {
  background-image: url("assets/kachel-anhaenger-mieten.png");
}

.city-content .city-service-grid .service-card:nth-child(3)::after {
  background-image: url("assets/kachel-luzern-basel.png");
}

.city-seo {
  margin-top: 44px;
}

.city-seo ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.city-seo li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: #ddf4fb;
  font-weight: 800;
}

.city-links {
  background: #101010;
}

.city-route-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-hero {
  display: grid;
  align-items: center;
  min-height: 82vh;
  padding: 140px clamp(18px, 6vw, 86px) 84px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.66)),
    url("assets/cengo-transporte-hero.png") center / cover;
}

.blog-hero > div {
  max-width: 980px;
}

.blog-intro {
  background: #080808;
}

.corridor-callout {
  display: grid;
  gap: 10px;
  max-width: 1120px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(224, 0, 11, 0.42);
  background:
    linear-gradient(90deg, rgba(224, 0, 11, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(15, 15, 15, 0.9);
}

.corridor-callout strong {
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.corridor-callout span {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
}

.corridor-section {
  background: #101010;
}

.place-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.place-cloud span,
.place-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: #edf3f5;
  font-weight: 800;
}

.place-cloud a {
  border-color: rgba(224, 0, 11, 0.48);
  color: #ffffff;
}

.place-cloud a:hover {
  background: rgba(224, 0, 11, 0.18);
}

.route-note {
  max-width: 980px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.tips-section {
  background: #080808;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  counter-reset: tips;
  list-style: none;
}

.tips-list li {
  position: relative;
  min-height: 82px;
  padding: 18px 18px 18px 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 15, 0.88);
  color: #dce4e7;
  line-height: 1.45;
}

.tips-list a {
  color: inherit;
  text-decoration: none;
}

.tips-list li:hover {
  border-color: rgba(224, 0, 11, 0.5);
  background:
    linear-gradient(180deg, rgba(224, 0, 11, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(15, 15, 15, 0.92);
}

.tips-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  content: counter(tips, decimal-leading-zero);
  counter-increment: tips;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
}

.blog-cta {
  background:
    linear-gradient(90deg, rgba(224, 0, 11, 0.14), transparent 48%),
    #101010;
}

.detail-hero {
  display: grid;
  align-items: center;
  min-height: 76vh;
  padding: 140px clamp(18px, 6vw, 86px) 80px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.68)),
    url("/assets/cengo-transporte-hero.png") center / cover;
}

.detail-hero > div {
  max-width: 980px;
}

.detail-hero h1,
.blog-hero h1,
.corridor-section h2 {
  overflow-wrap: anywhere;
}

.detail-content {
  background: #080808;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-content .city-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-content .service-card,
.tips-section .tips-list li {
  overflow: hidden;
}

.detail-content .service-card {
  --detail-visual-top: 218px;
  --detail-visual-height: clamp(330px, 23vw, 430px);
  min-height: calc(var(--detail-visual-top) + var(--detail-visual-height) + 28px);
  padding: 36px 28px;
}

.detail-content .service-card .icon {
  display: none;
}

.detail-content .service-card > * {
  position: relative;
  z-index: 2;
}

.detail-content .service-card::after {
  position: absolute;
  top: var(--detail-visual-top);
  right: 12px;
  left: 12px;
  height: var(--detail-visual-height);
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background-color: #080808;
  background-image: url("assets/kachel-autotransport.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(224, 0, 11, 0.24);
}

.detail-content .service-card:nth-child(2)::after {
  background-image: url("assets/kachel-anhaenger-mieten.png");
}

.detail-content .service-card:nth-child(3)::after {
  background-image: url("assets/kachel-luzern-basel.png");
}

.detail-content .service-card:nth-child(4)::after {
  background-image: url("assets/kachel-express-lieferungen.png");
}

.detail-content .service-card::before {
  z-index: 3;
}

.seo-copy {
  max-width: 900px;
  margin-top: 36px;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #090909;
}

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

.steps article {
  padding: 30px;
}

.steps strong {
  display: block;
  margin-bottom: 24px;
  color: var(--cyan-strong);
  font-size: 42px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(25, 210, 108, 0.5);
  color: #88ffb5;
}

.form-status.is-neutral {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.form-status.is-error {
  border-color: rgba(224, 0, 11, 0.5);
  color: #ff9aa0;
}

label {
  display: grid;
  gap: 8px;
  color: #f3f3f3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(155, 226, 255, 0.22);
  border-radius: 0;
  background: rgba(2, 8, 12, 0.58);
  color: var(--white);
  font: inherit;
  padding: 14px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(224, 0, 11, 0.14);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.check-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.wide {
  grid-column: 1 / -1;
}

.whatsapp-button {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  background: #25d366;
  color: #06120a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  font-weight: 900;
}

.whatsapp-button span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: #128c45;
  font-size: 12px;
  font-weight: 950;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #03080c;
}

.site-footer p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--cyan-strong);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .hero-content {
    min-height: 860px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.66) 58%, #080808 100%);
  }

  .hero picture img {
    object-position: 63% center;
  }

  .intro,
  .quote-section,
  .route-board {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .rental-grid,
  .city-service-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-seo ul,
  .city-route-list,
  .tips-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-content .city-service-grid .service-card {
    --city-visual-top: 205px;
    --city-visual-height: clamp(250px, 30vw, 330px);
  }

  .detail-content .service-card {
    --detail-visual-top: 210px;
    --detail-visual-height: clamp(300px, 36vw, 370px);
    min-height: calc(var(--detail-visual-top) + var(--detail-visual-height) + 26px);
  }

  .detail-content .service-card::after {
    height: var(--detail-visual-height);
  }
}

@media (max-width: 680px) {
  .hero,
  .hero-content {
    min-height: 820px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .service-grid,
  .rental-grid,
  .city-service-grid,
  .detail-grid,
  .steps,
  .quote-form,
  .route-list,
  .city-seo ul,
  .city-route-list,
  .tips-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .city-content .city-service-grid .service-card {
    --city-visual-top: 195px;
    --city-visual-height: clamp(230px, 54vw, 320px);
  }

  .detail-content .service-card {
    --detail-visual-top: 205px;
    --detail-visual-height: clamp(230px, 54vw, 320px);
    min-height: calc(var(--detail-visual-top) + var(--detail-visual-height) + 24px);
  }

  .detail-content .service-card::after {
    height: var(--detail-visual-height);
  }

  .site-footer {
    flex-direction: column;
  }
}
