:root {
  --ink: #06192f;
  --navy: #082646;
  --blue: #0f5f8e;
  --teal: #0b8c86;
  --green: #79a84b;
  --paper: #f5fafb;
  --surface: #ffffff;
  --soft: #eaf5f6;
  --mist: #dff0f1;
  --seafoam: #eef8f5;
  --line: #cfe0e4;
  --muted: #5a6b76;
  --shadow: 0 18px 50px rgba(5, 25, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(11, 140, 134, 0.14), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(121, 168, 75, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbfc 0%, #e9f4f5 42%, #f4faf7 72%, #e6f2f3 100%);
}

main {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(223, 240, 241, 0.5) 34%, rgba(247, 251, 252, 0.72) 66%, rgba(232, 245, 243, 0.68)),
    var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: #fff;
  background: rgba(6, 25, 47, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 252, 252, 0.96);
  box-shadow: 0 8px 28px rgba(6, 25, 47, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.site-header.is-scrolled .language-trigger {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 6px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 124px clamp(18px, 6vw, 86px) 76px;
  background:
    linear-gradient(90deg, rgba(6, 25, 47, 0.9), rgba(6, 25, 47, 0.62) 46%, rgba(6, 25, 47, 0.2)),
    linear-gradient(0deg, rgba(6, 25, 47, 0.84), rgba(6, 25, 47, 0.1) 58%),
    url("assets/eu-sleeper-vans-road.png") center / cover no-repeat,
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(90deg, var(--teal), var(--green));
  opacity: 0.14;
}

.hero-content {
  position: relative;
  width: min(860px, 100%);
}

.hero-logo {
  width: clamp(150px, 14vw, 230px);
  height: clamp(150px, 14vw, 230px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: clamp(8px, 1vw, 14px);
  margin-bottom: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #9be2dc;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
}

.hero h1 {
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.primary:hover {
  background: #087873;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(8, 38, 70, 0.98), rgba(11, 140, 134, 0.88)),
    var(--navy);
  color: #fff;
  padding: 22px clamp(18px, 6vw, 86px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.intro-grid div {
  padding: 8px 0;
}

.metric {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.metric-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section,
.split-section,
.contact-section {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 42px);
}

#services,
.fleet-section,
.faq-strip {
  background: rgba(239, 248, 245, 0.88);
  box-shadow: 0 0 0 100vmax rgba(239, 248, 245, 0.88);
  clip-path: inset(0 -100vmax);
}

.visual-section,
.map-section {
  background: rgba(223, 240, 241, 0.72);
  box-shadow: 0 0 0 100vmax rgba(223, 240, 241, 0.72);
  clip-path: inset(0 -100vmax);
}

.reputation-section,
.contact-section {
  background: rgba(247, 251, 252, 0.9);
  box-shadow: 0 0 0 100vmax rgba(247, 251, 252, 0.9);
  clip-path: inset(0 -100vmax);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.visual-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.services-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-overview-section,
.news-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 42px) 86px;
}

.client-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.service-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.06);
}

.service-card {
  border-top: 4px solid var(--teal);
}

.service-card p,
.process-step p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.overview-card,
.overview-summary,
.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.06);
}

.overview-card {
  padding: 24px;
  border-top: 4px solid var(--teal);
}

.overview-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.overview-card h3,
.overview-summary h3,
.news-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
}

.overview-card p,
.overview-summary p:not(.eyebrow),
.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.overview-summary {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(8, 38, 70, 0.06), rgba(11, 140, 134, 0.14)),
    rgba(255, 255, 255, 0.95);
}

.overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.overview-tags span,
.news-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.overview-tags span {
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 38, 70, 0.08);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.news-card {
  padding: 24px;
}

.news-label {
  margin-bottom: 16px;
  padding: 7px 11px;
  color: var(--teal);
  background: rgba(11, 140, 134, 0.1);
}

.featured-news {
  background:
    linear-gradient(150deg, rgba(8, 38, 70, 0.08), rgba(121, 168, 75, 0.12)),
    rgba(255, 255, 255, 0.96);
}

.news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.news-card a:hover {
  color: var(--teal);
}

.spain-campaign-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 42px) 86px;
}

.spain-campaign-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.spain-campaign-copy {
  padding: 32px;
  border: 1px solid rgba(121, 168, 75, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 247, 0.98));
  box-shadow: 0 14px 36px rgba(6, 25, 47, 0.08);
}

.spain-campaign-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(121, 168, 75, 0.12);
  border: 1px solid rgba(121, 168, 75, 0.24);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spain-campaign-copy h2 {
  margin: 18px 0 16px;
  color: var(--green);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.spain-campaign-copy p,
.spain-campaign-proof span,
.spain-campaign-points p {
  color: var(--green);
  line-height: 1.65;
}

.spain-campaign-lead {
  margin: 0;
  font-size: 20px;
}

.spain-campaign-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.spain-campaign-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(121, 168, 75, 0.12);
  border: 1px solid rgba(121, 168, 75, 0.22);
  color: var(--green);
  font-weight: 700;
}

.spain-campaign-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}

.spain-campaign-points article {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(121, 168, 75, 0.16), rgba(121, 168, 75, 0.06));
  border: 1px solid rgba(121, 168, 75, 0.22);
}

.spain-campaign-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.spain-campaign-visual {
  margin: 0;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(8, 38, 70, 0.14);
  border-radius: 8px;
  background: #0a0f16;
  box-shadow: 0 18px 44px rgba(6, 25, 47, 0.14);
}

.spain-campaign-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.spain-campaign-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(121, 168, 75, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(6, 25, 47, 0.08);
}

.spain-campaign-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.amazon-word {
  color: #ff9900;
}

.ebay-word .e {
  color: #e53238;
}

.ebay-word .b {
  color: #0064d2;
}

.ebay-word .a {
  color: #f5af02;
}

.ebay-word .y {
  color: #86b817;
}

.core-seo-hub {
  background: rgba(247, 251, 252, 0.9);
  box-shadow: 0 0 0 100vmax rgba(247, 251, 252, 0.9);
  clip-path: inset(0 -100vmax);
}

.core-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.core-seo-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(8, 38, 70, 0.12);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(6, 25, 47, 0.08);
}

.core-seo-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.core-seo-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.core-seo-card a {
  color: var(--teal);
  font-weight: 800;
}

.core-seo-card > a:last-child {
  margin-top: auto;
}

.supporting-seo-section {
  padding-top: 76px;
}

.supporting-seo-grid + .supporting-seo-grid {
  margin-top: 18px;
}

.freight-match-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 42px) 86px;
}

.freight-match-copy {
  max-width: 800px;
  margin-bottom: 28px;
}

.freight-match-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.freight-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.freight-match-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.match-step {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.06);
}

.match-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.match-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.match-step p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.freight-country-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.match-countries {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 145, 137, 0.15), rgba(255, 255, 255, 0.9));
  box-shadow: 0 12px 30px rgba(6, 25, 47, 0.07);
}

.match-countries strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
}

.match-countries p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.match-country-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.match-country-list span,
.freight-country-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
}

.seo-link-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 42px) 54px;
  background: rgba(232, 245, 243, 0.72);
  box-shadow: 0 0 0 100vmax rgba(232, 245, 243, 0.72);
  clip-path: inset(0 -100vmax);
}

.seo-link-section .section-heading {
  display: block;
  max-width: 720px;
  margin: 0 auto 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.seo-link-section .section-heading h2 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.seo-link-section .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.45;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.seo-link-grid a {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 16px rgba(6, 25, 47, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.seo-link-grid a:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.08);
  transform: translateY(-2px);
}

.seo-link-grid strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.18;
}

.seo-link-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.service-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.05);
}

.service-panel summary {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 18px 46px 18px 18px;
  cursor: pointer;
  list-style: none;
}

.service-panel summary::-webkit-details-marker {
  display: none;
}

.service-panel summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  line-height: 1;
}

.service-panel[open] summary::after {
  content: "-";
}

.service-panel summary span {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.service-panel summary small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.service-panel-links {
  display: grid;
  gap: 1px;
  padding: 0 14px 14px;
}

.service-panel-links a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--navy);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.service-panel-links a:hover {
  color: #fff;
  background: var(--teal);
}

.conversion-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1160px;
  margin: -34px auto 74px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(11, 140, 134, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 38, 70, 0.08), rgba(11, 140, 134, 0.16)),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 42px rgba(6, 25, 47, 0.08);
}

.conversion-strip h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 44px);
}

.conversion-strip p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.conversion-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 250px;
}

.service-page {
  background: var(--soft);
}

.simple-header {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.simple-header .brand img {
  border: 1px solid var(--line);
}

.simple-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.service-main {
  padding: 120px clamp(18px, 6vw, 86px) 70px;
}

.service-hero-page,
.service-content-page {
  max-width: 1060px;
  margin: 0 auto;
}

.service-hero-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.service-hero-page h1 {
  color: var(--navy);
  font-size: clamp(40px, 5vw, 68px);
}

.service-hero-page p,
.service-content-page p,
.service-content-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-hero-page .button.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.service-hero-page .button.secondary:hover {
  color: var(--teal);
  border-color: rgba(11, 140, 134, 0.45);
}

.service-hero-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-hero-card strong {
  color: var(--navy);
}

.service-content-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 42px;
}

.service-content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-content-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.service-cta-panel {
  max-width: 1060px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 38, 70, 0.96), rgba(11, 140, 134, 0.92)),
    var(--navy);
  box-shadow: var(--shadow);
}

.service-cta-panel h2 {
  max-width: 780px;
  color: #fff;
}

.service-cta-panel p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.62;
}

.service-cta-panel .hero-actions {
  margin-top: 22px;
}

.service-cta-panel .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.service-related-links {
  max-width: 1060px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-related-links h2 {
  max-width: 760px;
}

.related-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.related-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.related-link-grid a:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(6, 25, 47, 0.08);
}

.related-link-grid strong {
  color: var(--navy);
}

.related-link-grid span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: none;
}

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

.quote-form h2 {
  margin: 0;
}

.quote-helper {
  max-width: 760px;
  margin: -6px 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quote-options legend {
  padding: 0 8px;
  color: var(--navy);
  font-weight: 900;
}

.quote-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.quote-options input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.quote-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-details summary {
  padding: 15px 16px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.quote-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.quote-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
}

.quote-trust-card {
  background: linear-gradient(135deg, #fff, #f5faf9);
}

.quote-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.quote-trust-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-trust-grid strong,
.quote-trust-grid span {
  display: block;
}

.quote-trust-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.quote-trust-grid span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.faq-strip {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.faq-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.visual-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 42px) 86px;
}

.visual-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.client-points div {
  border-left: 4px solid var(--teal);
  background: var(--soft);
  padding: 16px 18px;
  border-radius: 6px;
}

.client-points strong,
.client-points span {
  display: block;
}

.client-points strong {
  margin-bottom: 6px;
  color: var(--navy);
}

.client-points span {
  color: var(--muted);
  line-height: 1.5;
}

.fleet-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 42px) 86px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fleet-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.06);
}

.fleet-card.highlight {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.fleet-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.fleet-card.highlight .fleet-number {
  color: var(--navy);
  background: #fff;
}

.fleet-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.fleet-card.highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.equipment-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.equipment-strip div {
  padding: 20px;
  background: var(--soft);
}

.equipment-strip strong,
.equipment-strip span {
  display: block;
}

.equipment-strip strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.equipment-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.road-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--soft);
}

.road-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.reputation-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 42px) 86px;
}

.reputation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rating-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 25, 47, 0.06);
}

.rating-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.platform-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rating-score {
  display: grid;
  justify-items: end;
  min-width: 120px;
  text-align: right;
}

.rating-score strong {
  color: var(--navy);
  font-size: 40px;
  line-height: 1;
}

.rating-score span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.compact-score strong {
  font-size: 34px;
}

.star-row,
.timocom-lines b {
  color: #f2b632;
  letter-spacing: 2px;
}

.star-row {
  margin-bottom: 18px;
  font-size: 24px;
}

.rating-bars {
  display: grid;
  gap: 13px;
}

.rating-bar {
  display: grid;
  grid-template-columns: 170px 1fr 44px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.rating-bar div {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: #edf2f3;
}

.rating-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f2b632, #f7cc57);
}

.rating-bar strong {
  color: var(--ink);
  text-align: right;
}

.trend-chart {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, #fbfcfd, #f3f7f8);
}

.trend-chart svg {
  width: 100%;
  height: auto;
}

.trend-chart line {
  stroke: #d8e1e4;
  stroke-width: 1;
}

.trend-chart polyline {
  stroke: #f2b632;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-chart circle {
  fill: #f2b632;
  stroke: #fff;
  stroke-width: 2;
}

.trend-chart text {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.timocom-lines {
  display: grid;
  gap: 14px;
}

.timocom-lines div {
  display: grid;
  grid-template-columns: 1fr auto 42px;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.timocom-lines div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timocom-lines span {
  color: var(--muted);
  font-weight: 700;
}

.timocom-lines strong {
  color: var(--ink);
  text-align: right;
}

.reputation-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  background: var(--soft);
  max-width: none;
  padding-left: max(clamp(18px, 6vw, 86px), calc((100vw - 1160px) / 2 + 42px));
  padding-right: max(clamp(18px, 6vw, 86px), calc((100vw - 1160px) / 2 + 42px));
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #e9f3df;
}

.logo-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 440px;
  padding: 46px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.logo-panel img {
  width: min(360px, 90%);
  margin-bottom: 26px;
}

.logo-panel p {
  max-width: 440px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.map-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 34px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 42px);
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
}

.map-toolbar span,
.map-toolbar strong {
  display: block;
}

.europe-map {
  min-height: 470px;
  background:
    radial-gradient(circle at 20% 15%, rgba(11, 140, 134, 0.12), transparent 28%),
    linear-gradient(180deg, #eef7f8, #dbecef);
}

.europe-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.country {
  fill: #f9fbfb;
  stroke: #bfd1d6;
  stroke-width: 0.6;
}

.coverage-dot {
  fill: #d71920;
  stroke: #fff;
  stroke-width: 1.2;
  opacity: 0.9;
}

.coverage-ring {
  fill: none;
  stroke: rgba(215, 25, 32, 0.2);
  stroke-width: 1;
}

.map-note {
  margin: 0;
  padding: 12px 18px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  background: #f7fafb;
  border-top: 1px solid var(--line);
}

.compact {
  padding-top: 76px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  font-weight: 800;
  color: var(--blue);
}

.company-details {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}

.company-details div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.company-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.company-details a {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(11, 140, 134, 0.18);
  border-color: var(--teal);
}

.full {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 18px;
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.europages-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  margin: 30px auto 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
}

.europages-proof h3 {
  margin: 5px 0 7px;
  color: var(--navy);
  font-size: 1.25rem;
}

.europages-proof p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.europages-proof .button {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .europages-proof {
    align-items: flex-start;
    flex-direction: column;
  }
}

.freight-float-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(6, 25, 47, 0.24);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.freight-float-button:hover {
  background: #087873;
}

.whatsapp-float-button {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 16px 8px 13px;
  color: #fff;
  background: #128c7e;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(6, 25, 47, 0.24);
  font-weight: 900;
}

.whatsapp-float-button::before {
  content: "WA";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #128c7e;
  background: #fff;
  font-size: 11px;
  letter-spacing: 0;
}

.whatsapp-float-button span {
  display: block;
  font-size: 11px;
  line-height: 1;
  opacity: 0.82;
}

.whatsapp-float-button strong {
  display: block;
  font-size: 14px;
  line-height: 1.15;
}

.whatsapp-float-button:hover {
  color: #fff;
  background: #0b7d70;
  transform: translateY(-1px);
}

.freight-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 25, 47, 0.72);
  backdrop-filter: blur(12px);
}

.freight-modal.is-open {
  display: flex;
}

.freight-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.freight-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.freight-dialog-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
  padding: clamp(24px, 4vw, 46px);
}

.freight-dialog h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.freight-dialog p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.freight-benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.freight-benefits li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.freight-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #e9f3df;
}

.freight-mini-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.freight-mini-form .button.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 25, 47, 0.72);
  backdrop-filter: blur(12px);
}

.language-modal.is-open {
  display: flex;
}

.language-dialog {
  width: min(520px, 100%);
  border-radius: 8px;
  padding: 32px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.language-dialog img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.language-dialog h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.language-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.language-options button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--soft);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-options button:hover,
.language-options button.is-active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

/* Simplified home presentation: keep the SEO architecture while reducing repetition. */
.home-simple {
  background: #f3f7f8;
}

.home-simple main {
  background: #f3f7f8;
}

.home-simple .home-hide {
  display: none;
}

.home-simple .hero {
  min-height: 82vh;
  background:
    linear-gradient(90deg, rgba(5, 24, 43, 0.94), rgba(5, 24, 43, 0.68) 55%, rgba(5, 24, 43, 0.2)),
    url("assets/eu-sleeper-vans-road.png") center / cover no-repeat,
    var(--navy);
}

.home-simple .hero::before {
  display: none;
}

.home-simple .hero-content {
  max-width: 780px;
}

.home-simple .hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
}

.home-simple .intro-band {
  background: #082646;
}

.home-simple .section,
.home-simple .freight-match-section,
.home-simple .fleet-section,
.home-simple .reputation-section,
.home-simple .split-section,
.home-simple .contact-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-simple .service-card,
.home-simple .core-seo-card,
.home-simple .fleet-card,
.home-simple .rating-card,
.home-simple .process-step {
  box-shadow: none;
}

.home-simple .freight-match-section {
  margin-top: 0;
}

.home-simple .supporting-seo-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.home-simple .freight-float-button {
  display: none;
}

.home-simple .freight-modal {
  display: none !important;
}

.home-simple .supporting-seo-section .section-heading {
  margin-bottom: 22px;
}

.home-simple .supporting-seo-section .services-grid {
  gap: 10px;
}

.home-simple .supporting-seo-section .service-card {
  min-height: 0;
  padding: 15px 16px;
  border-top-width: 2px;
}

.home-simple .supporting-seo-section .service-card h3 {
  margin: 0;
  font-size: 16px;
}

.home-simple .supporting-seo-section .service-card p {
  display: none;
}

.home-simple .core-seo-hub {
  padding-top: 48px;
  padding-bottom: 48px;
}

.home-simple .core-seo-grid {
  gap: 10px;
}

.home-simple .core-seo-card {
  min-height: 0;
  padding: 16px;
}

.home-simple .core-seo-card h3 {
  margin: 0;
  font-size: 17px;
}

.home-simple .core-seo-card p,
.home-simple .core-seo-card > a:last-child {
  display: none;
}

.home-simple .equipment-strip,
.home-simple .reputation-grid .rating-card:nth-child(2),
.home-simple .reputation-grid .rating-card:nth-child(4) {
  display: none;
}

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

.home-simple .fleet-section,
.home-simple .reputation-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 720px) {
  .home-simple .hero {
    min-height: 78vh;
    padding-top: 112px;
  }

  .home-simple .hero h1 {
    font-size: 42px;
  }

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

  .home-simple .reputation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .intro-grid,
  .services-grid,
  .seo-link-grid,
  .core-seo-grid,
  .service-accordion,
  .quote-form,
  .client-overview-grid,
  .news-grid,
  .spain-campaign-shell,
  .spain-campaign-proof,
  .spain-campaign-points,
  .fleet-grid,
  .freight-match-panel,
  .reputation-grid,
  .equipment-strip,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .visual-section,
  .freight-dialog-grid,
  .map-section,
  .contact-section,
  .service-hero-page,
  .service-content-page {
    grid-template-columns: 1fr;
  }

  .overview-summary {
    order: -1;
  }

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

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

  .seo-link-section .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .match-countries {
    grid-template-columns: 1fr;
  }

  .match-country-list {
    justify-content: flex-start;
  }

  .conversion-strip {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand span {
    max-width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .language-trigger {
    margin-left: auto;
  }

  .hero {
    min-height: 86vh;
    padding: 98px 18px 48px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .intro-grid,
  .services-grid,
  .seo-link-grid,
  .core-seo-grid,
  .service-accordion,
  .quote-form,
  .client-overview-grid,
  .news-grid,
  .spain-campaign-shell,
  .spain-campaign-proof,
  .spain-campaign-points,
  .fleet-grid,
  .freight-match-panel,
  .reputation-grid,
  .equipment-strip,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quote-options {
    grid-template-columns: 1fr;
  }

  .quote-details-grid {
    grid-template-columns: 1fr;
  }

  .quote-trust-grid {
    grid-template-columns: 1fr;
  }

  .related-link-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .client-overview-section,
  .news-section,
  .spain-campaign-section,
  .freight-match-section,
  .fleet-section,
  .reputation-section,
  .visual-section,
  .split-section,
  .map-section,
  .contact-section {
    padding: 58px 18px;
  }

  .seo-link-section {
    padding: 34px 18px;
  }

  .rating-card-header,
  .timocom-lines div {
    grid-template-columns: 1fr;
  }

  .rating-card-header {
    display: grid;
  }

  .rating-score {
    justify-items: start;
    text-align: left;
  }

  .rating-bar {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .rating-bar strong,
  .timocom-lines strong {
    text-align: left;
  }

  .freight-float-button {
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
  }

  .whatsapp-float-button {
    right: 18px;
    bottom: 82px;
    justify-content: center;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float-button span,
  .whatsapp-float-button strong {
    display: none;
  }

  .freight-dialog {
    max-height: 92vh;
  }

  .freight-dialog-grid {
    padding: 24px 18px;
  }

  .conversion-strip {
    margin: -20px 18px 58px;
  }

  .conversion-actions {
    grid-template-columns: 1fr;
  }

  .road-visual img {
    height: 260px;
  }

  .logo-panel {
    min-height: 300px;
  }

  .contact-form {
    padding: 20px;
  }

  .company-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .language-dialog {
    padding: 24px 18px;
  }

  .language-options {
    grid-template-columns: 1fr;
  }

  .map-toolbar {
    display: grid;
  }

  .europe-map {
    min-height: 340px;
  }

  .simple-nav {
    display: none;
  }

  .service-main {
    padding: 92px 18px 48px;
  }
}
