:root {
  --navy: #071a33;
  --navy-2: #0e3154;
  --ink: #122033;
  --muted: #627184;
  --line: #d8e0e8;
  --soft: #f4f7f9;
  --white: #ffffff;
  --copper: #b87345;
  --copper-2: #df9b62;
  --teal: #24b6b2;
  --green: #3f9c6b;
  --shadow: 0 22px 60px rgba(7, 26, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 232, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--copper));
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 22px);
  color: #213047;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--copper);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none !important;
  margin-left: 10px;
}

.nav-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669, #047857);
}

.nav-call__icon {
  font-size: 1.05rem;
}

.nav-call__label {
  display: inline;
}

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

@media (max-width: 1020px) {
  .nav-call {
    margin-left: 0;
    justify-content: center;
    margin-top: 8px;
  }
  .nav-call__label {
    display: inline;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(7, 26, 51, 0.93) 0%, rgba(7, 26, 51, 0.66) 48%, rgba(7, 26, 51, 0.08) 100%),
    url("hero-european-mobility-center.webp");
  background-size: cover;
  background-position: center;
}

.hero--compact {
  min-height: min(560px, 66svh);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.1), rgba(7, 26, 51, 0.5)),
    radial-gradient(circle at 18% 35%, rgba(184, 115, 69, 0.28), transparent 28%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-2);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--copper), var(--copper-2));
  box-shadow: 0 16px 38px rgba(184, 115, 69, 0.32);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn--call {
  color: var(--white) !important;
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 16px 38px rgba(16, 185, 129, 0.32);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #059669, #047857);
  color: var(--white) !important;
}

.btn--call .btn__icon {
  font-size: 1.15rem;
}

.btn--call .btn__label {
  display: inline;
}

@media (max-width: 420px) {
  .btn--call .btn__label {
    display: none;
  }
}

.btn--full {
  width: 100%;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero__signals span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trust-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -32px auto 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(7, 26, 51, 0.12);
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(7, 26, 51, 0.03);
  min-height: 58px;
}

.trust-strip span:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.08);
  border-color: rgba(184, 115, 69, 0.3);
}

.trust-strip span svg {
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-strip span:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) 0;
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.valuator,
.map-panel,
.page-visual,
.visual-card,
.metric-grid div,
.link-group,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(7, 26, 51, 0.08);
}

.valuator {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 4vw, 30px);
}

.valuator label {
  color: var(--navy);
  font-weight: 850;
}

.valuator select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 0 12px;
  color: var(--ink);
}

.valuator textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 10px 12px;
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
}

.offer-preview {
  min-height: 70px;
  margin: 8px 0;
  padding: 14px;
  border-left: 4px solid var(--copper);
  background: #fff8f2;
  color: var(--navy);
  font-weight: 750;
}

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

.section--map {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, var(--white), #f6fbfb),
    repeating-linear-gradient(90deg, rgba(36, 182, 178, 0.12) 0 1px, transparent 1px 80px);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.tri-map {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(14, 49, 84, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(14, 49, 84, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 49, 84, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 52% 47%, rgba(184, 115, 69, 0.28), transparent 19%),
    linear-gradient(135deg, #f8fbfd, #e9f3f3 62%, #f7efe8);
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow: var(--shadow);
}

.map-node,
.map-core {
  position: absolute;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
}

.map-node {
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(7, 26, 51, 0.22);
}

.map-node strong,
.map-node small {
  display: block;
  line-height: 1;
}

.map-node strong {
  font-size: 1.25rem;
}

.map-node small {
  margin-top: 6px;
  font-size: 0.72rem;
}

.map-node--de {
  left: 45%;
  top: 12%;
  background: var(--navy);
}

.map-node--be {
  left: 19%;
  bottom: 17%;
  background: var(--copper);
}

.map-node--nl {
  right: 16%;
  bottom: 21%;
  background: var(--teal);
}

.map-node.is-active {
  outline: 5px solid rgba(184, 115, 69, 0.28);
  transform: translateY(-4px);
}

.map-core {
  left: 50%;
  top: 52%;
  translate: -50% -50%;
  width: 82px;
  height: 82px;
  background: var(--white);
  border: 2px solid var(--copper);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.map-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(14, 49, 84, 0.45), transparent);
  transform-origin: left center;
}

.map-line--one {
  width: 230px;
  left: 45%;
  top: 37%;
  rotate: 116deg;
}

.map-line--two {
  width: 270px;
  left: 31%;
  top: 65%;
  rotate: -9deg;
}

.map-line--three {
  width: 220px;
  left: 58%;
  top: 39%;
  rotate: 55deg;
}

.map-panel {
  padding: clamp(22px, 4vw, 34px);
}

.section--maps {
  align-items: stretch;
}

.map-embed {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #2e4158;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 156, 107, 0.14);
}

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

.visual-card {
  padding: 16px;
}

.visual {
  position: relative;
  height: 166px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transition: transform 0.5s ease;
}

.visual-card:hover .visual img,
.page-visual:hover .visual img {
  transform: scale(1.08);
}



.page-visual {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.page-visual .visual {
  margin: 0;
}

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

.metric-grid div {
  padding: 22px;
}

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

.metric-grid strong {
  color: var(--copper);
  font-size: 2.2rem;
  line-height: 1;
}

.metric-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.section--links {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #f9fbfd, #ffffff);
}

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

.link-group {
  padding: 18px;
}

.link-group a {
  display: block;
  padding: 8px 0;
  color: #33475f;
  border-bottom: 1px solid rgba(216, 224, 232, 0.72);
}

.link-group a:hover,
.link-group a.is-active {
  color: var(--copper);
}

.section--faq {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-bottom: 0;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px clamp(18px, 4vw, 54px) 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--copper);
}

.footer-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 24px;
}

.footer-menu,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--copper-2);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li svg {
  color: var(--copper);
  flex-shrink: 0;
}

.footer-contact a {
  color: inherit;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--copper-2);
}

.site-footer .brand {
  margin-bottom: 12px;
}

.site-footer .brand strong {
  color: var(--white);
}

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

.site-footer .brand-mark {
  background: linear-gradient(135deg, var(--navy-2), var(--copper));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .footer-col--brand {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col--brand {
    grid-column: span 1;
  }
}



@media (max-width: 1020px) {
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
  }

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

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin: 24px auto 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 72svh;
    background-position: 62% center;
  }

  .hero__inner {
    padding: 58px 0 72px;
  }

  h1 {
    font-size: clamp(2.3rem, 14vw, 4rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust-strip,
  .visual-grid,
  .link-groups,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .tri-map {
    min-height: 360px;
  }

  .map-node {
    width: 86px;
    height: 86px;
  }

  .map-node--de {
    left: 40%;
  }

  .map-node--be {
    left: 8%;
  }

  .map-node--nl {
    right: 7%;
  }

  .site-footer {
    display: block;
  }
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--navy);
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.legal-content .highlight {
  background: var(--soft);
  padding: 10px 14px;
  border-left: 3px solid var(--copper);
  border-radius: 4px;
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 0.94rem;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.5;
}

/* Floating Action Bar */
.floating-actions {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.floating-btn svg {
  transition: transform 0.3s ease;
}

.floating-btn--call {
  border-color: #0ea5e9 !important;
  color: #0ea5e9 !important;
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.12) !important;
}

.floating-btn--form {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12) !important;
}

.floating-btn--whatsapp {
  border-color: #25d366 !important;
  color: #25d366 !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.12) !important;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.floating-btn:hover svg {
  transform: scale(1.1) rotate(-8deg);
}

/* Hover filled branding states */
.floating-btn--call:hover {
  background: #0ea5e9 !important;
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35) !important;
}

.floating-btn--form:hover {
  background: #f59e0b !important;
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35) !important;
}

.floating-btn--whatsapp:hover {
  background: #25d366 !important;
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35) !important;
}

/* Premium CSS tooltips */
.floating-btn::after {
  content: attr(data-label);
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(7, 26, 51, 0.15);
}

.floating-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Responsiveness for mobile screens */
@media (max-width: 768px) {
  .floating-actions {
    right: 16px;
    gap: 12px;
  }
  .floating-btn {
    width: 46px;
    height: 46px;
  }
  .floating-btn::after {
    display: none; /* Hide tooltips on mobile to prevent clipping */
  }
}

/* Expert Boost Section */
.section--expert-boost {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.boost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.boost-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.boost-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 115, 69, 0.3);
}

.boost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(184, 115, 69, 0.08);
  color: var(--copper);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.boost-card:hover .boost-icon {
  background: var(--copper);
  color: var(--white);
  transform: scale(1.1) rotate(4deg);
}

.boost-card h3 {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 12px;
}

.boost-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .boost-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .boost-card {
    padding: 24px;
  }
}

/* Hero Action Buttons (Equal Sizing & Style) */
.btn--hero {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 300px !important;
  height: 68px !important;
  padding: 10px 20px !important;
  gap: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 12px !important;
}

.btn--primary.btn--hero {
  background: linear-gradient(135deg, #e5a975 0%, #c67f4f 55%, #a85f31 100%) !important;
  box-shadow: 0 12px 30px rgba(198, 127, 79, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn--call.btn--hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 55%, #047857 100%) !important;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn--hero .btn-hero-icon {
  color: var(--white) !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)) !important;
}

.btn--hero .btn-hero-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.btn--hero .btn-top {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  opacity: 0.82 !important;
  display: block !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  margin-bottom: 2px !important;
}

.btn--hero .btn-sub {
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  opacity: 1 !important;
  display: block !important;
}

.btn--hero:hover {
  transform: translateY(-3px) !important;
}

.btn--primary.btn--hero:hover {
  background: linear-gradient(135deg, #f0b785 0%, #d48b59 55%, #b66a3a 100%) !important;
  box-shadow: 0 16px 36px rgba(198, 127, 79, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.btn--call.btn--hero:hover {
  background: linear-gradient(135deg, #34d399 0%, #059669 55%, #047857 100%) !important;
  box-shadow: 0 16px 36px rgba(5, 150, 105, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 680px) {
  .hero__actions {
    gap: 16px !important;
  }
  .hero__actions .btn--hero {
    width: 100% !important;
  }
}

/* E-E-A-T Vertrauensbereich */
.section--eeat {
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%) !important;
}

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

.eeat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eeat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 115, 69, 0.25);
}

.eeat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(184, 115, 69, 0.08);
  color: var(--copper);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.eeat-card:hover .eeat-icon {
  background: var(--copper);
  color: var(--white);
}

.eeat-card h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--copper);
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.eeat-card h4 {
  font-size: 1.12rem;
  font-weight: 850;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.25;
}

.eeat-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.eeat-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.eeat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--navy);
  font-weight: 750;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(7, 26, 51, 0.02);
}

.eeat-badge svg {
  color: var(--green);
}

@media (max-width: 1020px) {
  .eeat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .eeat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .eeat-badges {
    flex-direction: column;
    align-items: stretch;
  }
  .eeat-badge {
    justify-content: center;
  }
}


