:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #607086;
  --navy: #06172f;
  --navy-2: #0b2b4f;
  --blue: #165a84;
  --orange: #ff7a1a;
  --orange-2: #f25f0b;
  --cyan: #14a4b8;
  --green: #1b7b5f;
  --paper: #ffffff;
  --mist: #f4f8fc;
  --line: #dce6ef;
  --shadow: 0 22px 60px rgba(6, 23, 47, 0.12);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--paper);
  font-weight: 800;
}

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

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #27425d;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--mist);
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.quote-button,
.primary-button,
.secondary-button,
.submit-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 750;
}

.quote-button,
.primary-button,
.submit-button {
  background: var(--orange);
  color: #1c1208;
  border: 1px solid rgba(255, 122, 26, 0.4);
}

.quote-button {
  padding: 0 16px;
}

.primary-button {
  padding: 0 18px;
}

.primary-button:hover,
.quote-button:hover,
.submit-button:hover {
  background: var(--orange-2);
}

.secondary-button {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--paper);
  background: rgba(6, 23, 47, 0.38);
}

.phone-hero-btn {
  border-color: rgba(255, 122, 26, 0.5) !important;
}

.phone-hero-btn:hover {
  background: var(--orange) !important;
  color: #1c1208 !important;
  border-color: var(--orange) !important;
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.35);
}

.text-link {
  justify-content: flex-start;
  min-height: 34px;
  color: var(--blue);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 96px 32px 118px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-home {
  min-height: 720px;
}

.hero-sub {
  min-height: 560px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 23, 47, 0.88), rgba(6, 23, 47, 0.58) 43%, rgba(6, 23, 47, 0.08) 74%),
    linear-gradient(0deg, rgba(6, 23, 47, 0.44), rgba(6, 23, 47, 0));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: inherit;
}

h1 {
  font-size: 4.25rem;
  max-width: 790px;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 9px;
  color: rgba(255, 255, 255, 0.45);
}

.valuation-strip {
  position: absolute;
  z-index: 4;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr 160px 170px;
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-step,
.file-step {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-step > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 800;
}

.form-step label {
  display: grid;
  gap: 2px;
  width: 100%;
  min-width: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-step input,
.form-step select {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
}

.file-step {
  justify-content: center;
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.file-step input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-step span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.submit-button {
  min-width: 0;
  border: 0;
  cursor: pointer;
  font-size: 0.96rem;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 8px 10px 2px;
  color: var(--green);
  font-weight: 750;
}

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

.trust-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--navy);
  color: var(--paper);
}

.trust-rail span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trust-rail .icon {
  color: var(--orange);
}

.section {
  padding: 84px 32px;
}

.section:nth-of-type(odd) {
  background: var(--mist);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.gateway-section {
  background:
    linear-gradient(180deg, var(--paper), var(--mist)),
    radial-gradient(circle at 18% 24%, rgba(20, 164, 184, 0.16), transparent 28%);
}

.gateway-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: stretch;
}

.gateway-map,
.gateway-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gateway-map {
  min-height: 420px;
  padding: 18px;
  overflow: hidden;
}

.gateway-map svg {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.country {
  fill: #e6eef6;
  stroke: #c7d6e4;
  stroke-width: 2;
  transition: fill 180ms ease, transform 180ms ease;
}

.country.active {
  fill: #d7eff4;
}

.country-de.active {
  fill: #dfeafb;
}

.country-be.active {
  fill: #ffe4d0;
}

.country-nl.active {
  fill: #d8f0e8;
}

.route-line {
  fill: none;
  stroke: rgba(22, 90, 132, 0.28);
  stroke-width: 4;
  stroke-linecap: round;
}

.route-line.active {
  stroke: var(--orange);
}

.hub {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 8;
}

.node {
  fill: var(--blue);
  stroke: var(--paper);
  stroke-width: 6;
}

.node.active {
  fill: var(--orange);
}

.gateway-map text {
  fill: var(--navy);
  font-size: 24px;
  font-weight: 800;
}

.gateway-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 24px;
}

.country-tabs {
  display: grid;
  gap: 8px;
}

.country-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.country-tab span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--blue);
  font-size: 0.82rem;
}

.country-tab.active {
  border-color: rgba(255, 122, 26, 0.55);
  background: #fff6ee;
}

.country-tab.active span {
  background: var(--orange);
  color: #1c1208;
}

.country-panel {
  min-height: 160px;
  padding-top: 4px;
}

.country-panel p {
  color: var(--muted);
}

.checker {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.checker-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checker-option {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.checker-option.active {
  border-color: rgba(255, 122, 26, 0.65);
  background: var(--navy);
  color: var(--paper);
}

.checker-result {
  min-height: 236px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
}

.checker-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.primary-button.slim {
  width: max-content;
  min-height: 42px;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.visual-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(6, 23, 47, 0.08);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p,
.detail-copy p,
.benefit-card span {
  color: var(--muted);
}

.visual-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.visual-card {
  margin: 0;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.visual-card figcaption {
  padding: 14px;
  color: var(--navy);
  font-weight: 850;
}

.link-columns {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.link-columns > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.link-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  color: var(--blue);
  font-weight: 750;
}

.process-list {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-list li {
  min-height: 210px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(6, 23, 47, 0.08);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
  font-weight: 850;
}

.process-list p {
  color: var(--muted);
}

.detail-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.detail-section.section {
  background: var(--paper);
}

.detail-copy p {
  font-size: 1.06rem;
}

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

.benefit-card {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
}

.benefit-card .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.map-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: stretch;
}

.map-section.section {
  background: var(--paper);
}

.map-copy {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
}

.map-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  padding: 80px 32px 60px;
  background: linear-gradient(180deg, var(--navy) 0%, #030d1a 100%);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  color: var(--paper);
  margin-bottom: 8px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.66);
}

.brand-desc {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 400;
}

.site-footer h3.footer-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 60px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


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

  .main-nav.is-open {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 20px 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-toggle {
    display: grid;
    gap: 4px;
  }

  .valuation-strip {
    grid-template-columns: 1fr 1fr;
  }

  .submit-button,
  .file-step {
    min-height: 58px;
  }

  .gateway-layout,
  .detail-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }


  .site-header {
    padding: 0 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .quote-button,
  .icon-button {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 78px 18px 36px;
  }

  .hero-bg-img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 23, 47, 0.92), rgba(6, 23, 47, 0.76) 58%, rgba(6, 23, 47, 0.18)),
      linear-gradient(0deg, rgba(6, 23, 47, 0.42), rgba(6, 23, 47, 0));
  }

  h1 {
    font-size: 2.55rem;
    max-width: 340px;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

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

  .valuation-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 28px;
    max-height: none;
  }

  .form-step,
  .file-step,
  .submit-button {
    min-height: 52px;
  }

  .section {
    padding: 58px 18px;
  }

  .trust-rail {
    justify-content: flex-start;
    padding: 14px 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .trust-rail span {
    white-space: nowrap;
  }

  .gateway-map {
    min-height: 310px;
    padding: 8px;
  }

  .gateway-map svg {
    min-height: 300px;
  }

  .gateway-map text {
    font-size: 20px;
  }

  .checker,
  .checker-options,
  .service-grid,
  .visual-grid,
  .link-columns,
  .link-columns.two,
  .process-list,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .checker-option {
    min-height: 56px;
  }

  .checker-result {
    min-height: 210px;
  }

  .process-list li {
    min-height: 178px;
  }

  .map-copy {
    padding: 22px;
  }

  .map-section iframe {
    min-height: 300px;
  }

  .footer-bottom {
    display: grid;
  }

}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .primary-button,
  .secondary-button,
  .submit-button {
    width: 100%;
  }
}

/* Floating Vertical CTA Sidebar */
.floating-cta {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(70px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%) translateX(0);
}

.floating-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(6, 23, 47, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-btn.btn-call {
  color: var(--orange);
}

.floating-btn.btn-mail {
  color: var(--cyan);
}

.floating-btn.btn-chat {
  color: #25d366;
}

.floating-btn.btn-chat .icon {
  fill: currentColor;
  stroke: none;
}

.floating-btn .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 36px rgba(6, 23, 47, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.floating-btn.btn-call:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.45);
}

.floating-btn.btn-mail:hover {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 164, 184, 0.45);
}

.floating-btn.btn-chat:hover {
  background: #25D366; /* WhatsApp green */
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

@media (max-width: 480px) {
  .floating-cta {
    right: 12px;
    gap: 8px;
  }
  
  .floating-btn {
    width: 44px;
    height: 44px;
  }
  
  .floating-btn .icon {
    width: 18px;
    height: 18px;
  }
}

/* Footer Enhancements & Layout */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  width: 100%;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
  width: 100%;
  transition: transform 0.2s ease;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-badge .icon {
  width: 18px;
  height: 18px;
}

.badge-orange {
  color: var(--orange);
  background: rgba(255, 122, 26, 0.08);
  border-color: rgba(255, 122, 26, 0.14);
}

.badge-green {
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.14);
}

.badge-cyan {
  color: var(--cyan);
  background: rgba(20, 164, 184, 0.08);
  border-color: rgba(20, 164, 184, 0.14);
}

.badge-muted {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.icon-filled .icon {
  fill: currentColor;
  stroke: none !important;
}

.footer-item-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  line-height: 1;
}

.item-link {
  font-size: 0.94rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9) !important;
  display: inline-block !important;
  margin: 0 !important;
  transition: color 0.2s ease;
}

.item-link:hover {
  color: var(--orange) !important;
}

.link-whatsapp {
  color: #25d366 !important;
}

.link-whatsapp:hover {
  color: #3bf17d !important;
}

.item-value {
  font-size: 0.94rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
}

.item-note {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Schnellzugriff List & Hover Effect */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  width: 100%;
}

.footer-item-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  transition: all 0.25s ease !important;
  font-weight: 600;
  font-size: 0.94rem;
}

.footer-item-link .icon {
  width: 12px;
  height: 12px;
  color: var(--orange);
  transition: transform 0.25s ease;
}

.footer-item-link:hover {
  color: var(--orange) !important;
  transform: translateX(6px);
}

/* Footer Bottom Layout */
.copyright {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  display: inline-block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--orange) !important;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  user-select: none;
}

/* Hover Micro-interactions */
.footer-item:hover .icon-badge {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-item:hover .badge-orange {
  border-color: var(--orange);
  background: rgba(255, 122, 26, 0.12);
}

.footer-item:hover .badge-green {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.footer-item:hover .badge-cyan {
  border-color: var(--cyan);
  background: rgba(20, 164, 184, 0.12);
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 14px;
}

/* Testimonials & Reviews Styles */
.testimonials-section {
  background: var(--paper) !important;
}

.testimonials-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.summary-score {
  font-size: 3.5rem;
  font-weight: 850;
  color: var(--navy);
  line-height: 1;
}

.summary-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.summary-stars span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.testimonials-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: 0 10px 30px rgba(6, 23, 47, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 122, 26, 0.25);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-text {
  margin: 0;
  font-style: italic;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding-top: 12px;
}

.review-meta strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.review-meta small {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
