:root {
  /* FN Branding Farben - aus BRAND-GUIDELINES.md
     Primary: FN Blue #195FA6, CTA: FN Green #DCEB3F, Soft: Light Blue #CAE2F7, Sand #F1F1F1 */
  --fn-blue: #195FA6;
  --fn-blue-deep: #0F3F70;
  --fn-blue-dark: #0B2E52;
  --fn-light-blue: #CAE2F7;
  --fn-green: #DCEB3F;
  --fn-green-hover: #c7d832;
  --fn-sand: #F1F1F1;
  --fn-gray: #6B7280;
  --fn-black-soft: #111827;

  --bg-green: var(--fn-blue);
  --bg-green-deep: var(--fn-blue-deep);
  --bg-soft-green: var(--fn-light-blue);
  --accent: var(--fn-green);
  --accent-2: var(--fn-blue);
  --title-dark: var(--fn-black-soft);
  --body-dark: var(--fn-gray);
  --body-white: rgba(255,255,255,.84);
  --soft-gray: var(--fn-sand);
  --white: #FFFFFF;
  --line: rgba(25,95,166,.16);
  --shadow: 0 24px 70px rgba(25,95,166,.16);
  --shadow-soft: 0 16px 44px rgba(17,24,39,.09);
  --font-head: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1200px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  max-width: 100%;
  overflow-x: hidden;
  color: var(--title-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--accent); color: var(--title-dark); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--accent);
  color: var(--title-dark);
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 24px 0 auto;
  z-index: 50;
  pointer-events: none;
}
.nav-shell {
  pointer-events: auto;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
  padding: 12px 14px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(25,95,166,.86);
  color: var(--white);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-scrolled .nav-shell {
  background: rgba(15,63,112,.94);
  border-color: rgba(220,235,63,.18);
  transform: translateY(-8px);
}
.brand { display: inline-flex; align-items: center; min-width: 150px; }
.brand__logo {
  height: 40px;
  width: auto;
  max-width: 204px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.84);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--title-dark);
  font-weight: 800;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48), 0 18px 40px rgba(220,235,63,.18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 24px 60px rgba(220,235,63,.26); }

/* Globale Navigation: Rechner-Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.nav-dropdown__trigger svg { width: 10px; height: 7px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s var(--ease); }
.nav-dropdown.is-open .nav-dropdown__trigger,
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus-visible { color: #fff; }
.nav-dropdown.is-open .nav-dropdown__trigger svg { transform: rotate(180deg); }
.nav-dropdown__trigger:focus-visible { outline: 3px solid rgba(220,235,63,.3); outline-offset: 6px; border-radius: 4px; }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 280px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(15,63,112,.98);
  box-shadow: 0 24px 70px rgba(4,27,54,.3);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown__menu a { display: grid; gap: 3px; margin: 0; padding: 12px 13px; border-radius: 12px; color: #fff; }
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible { background: rgba(220,235,63,.2); outline: none; }
.nav-dropdown__menu strong { font-size: 14px; }
.nav-dropdown__menu small { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 500; }

.nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: rgba(255,255,255,.1); border-radius: 50%; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section-dark { background: var(--bg-green); color: #fff; }
.section-light { background: #fff; color: var(--title-dark); }
.section-soft { background: var(--soft-gray); color: var(--title-dark); }

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 164px 0 100px;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: none;
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  z-index: -2;
}
.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .45;
  z-index: -1;
}
.hero__glow--one { width: 560px; height: 560px; right: -180px; top: 90px; background: rgba(220,235,63,.34); }
.hero__glow--two { width: 480px; height: 480px; left: -180px; bottom: 120px; background: rgba(202,226,247,.28); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 76px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 4px 18px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(25,95,166,.4);
  background: var(--bg-soft-green);
  color: var(--accent-2);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
  margin: 0 0 28px;
  width: fit-content;
  max-width: 100%;
}
.eyebrow--dark { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.09); color: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.eyebrow__mark {
  width: 40px;
  height: 32px;
  border-radius: 999px;
  background: var(--title-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.eyebrow--dark .eyebrow__mark { background: var(--accent); }
.eyebrow__mark::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: currentColor; color: #fff; }
.eyebrow--dark .eyebrow__mark::after { color: var(--title-dark); }
.hero h1, .section-heading h2, .about h2, .portfolio h2, .team h2, .contact h2 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.04;
  margin: 0;
}
.hero h1 { font-size: clamp(58px, 8vw, 112px); max-width: 760px; }
.hero h1 span, .section-heading h2 span, .about h2 span, .portfolio h2 span, .team h2 span, .contact h2 span { color: var(--accent); font-style: normal; }
.hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--body-white);
  font-size: 18px;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn--accent { background: var(--accent); color: var(--title-dark); box-shadow: 0 20px 52px rgba(220,235,63,.22); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 28px 72px rgba(220,235,63,.3); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.05); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn--primary { background: var(--accent-2); color: #fff; box-shadow: 0 18px 48px rgba(25,95,166,.22); }
.btn--primary:hover { background: var(--fn-green-hover); transform: translateY(-2px); box-shadow: 0 26px 62px rgba(25,95,166,.24); }
.hero__stats { display: flex; gap: 34px; margin-top: 58px; }
.hero__stats div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.22); }
.hero__stats strong { display: block; font-family: var(--font-head); font-size: 32px; line-height: 1; color: var(--accent); }
.hero__stats span { display: block; margin-top: 8px; color: rgba(255,255,255,.85); font-size: 13px; }
.hero__visual { position: relative; min-height: 620px; }
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  box-shadow: 0 34px 100px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
}
.photo-card--hero { width: min(100%, 500px); margin-left: auto; }
.photo-card--hero img { width: 100%; height: 620px; object-fit: cover; object-position: center; }
.photo-card--hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,95,166,.68), transparent 52%); }
.photo-card__badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--title-dark);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.photo-card__badge span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-green); color: #fff; font-weight: 900; }
.photo-card__badge p { margin: 0; font-size: 13px; line-height: 1.25; font-weight: 800; }
.floating-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  color: var(--title-dark);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.floating-card strong { display: block; font-family: var(--font-head); font-size: 24px; margin-bottom: 6px; color: var(--bg-green); }
.floating-card span { color: var(--body-dark); font-size: 13px; line-height: 1.45; }
.floating-card--top { left: 0; top: 86px; }
.floating-card--bottom { right: -20px; bottom: 70px; }

.trust-strip {
  background: #fff;
  padding: 46px 0 46px;
  border-bottom: 1px solid rgba(41,45,50,.08);
}
.trust-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}
.trust-strip__heading {
  max-width: 620px;
  margin: 0;
  color: var(--title-dark);
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.trust-strip__logos img {
  max-height: 81px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.trust-strip__logos img:hover { filter: grayscale(0); opacity: 1; }
.trust-strip__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.trust-strip__badges span {
  font-size: clamp(12px, 3.2vw, 13px);
  font-weight: 800;
  color: var(--accent-2);
  padding: 9px 12px;
  background: var(--bg-soft-green);
  border-radius: 999px;
  white-space: nowrap;
}

.services, .portfolio, .team { padding: 112px 0; }
.about, .testimonials { padding: 116px 0; }
.section-heading { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.section-heading h2, .about h2, .portfolio h2, .team h2, .contact h2 { font-size: clamp(28px, 8vw, 56px); line-height: 1.08; }
.section-heading p:last-child, .about__copy > p, .team__copy > p, .contact-card p { color: var(--body-dark); font-size: 16px; line-height: 1.75; }
.section-heading h2 span, .about h2 span, .portfolio h2 span, .team h2 span { color: var(--accent-2); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border-radius: 30px;
  background: var(--soft-gray);
  overflow: hidden;
  border: 1px solid rgba(41,45,50,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.service-card::before { content: ''; position: absolute; inset: -1px; opacity: 0; background: linear-gradient(135deg, rgba(202,226,247,.8), rgba(220,235,63,.24), transparent 70%); transition: opacity .35s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(25,95,166,.2); background: #fff; }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card__icon { width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; background: var(--bg-green); color: #fff; margin-bottom: 28px; }
.service-card__icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 13px; font-family: var(--font-head); font-size: 24px; line-height: 1.15; letter-spacing: -.5px; }
.service-card p { margin: 0 0 26px; color: var(--body-dark); line-height: 1.65; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-2); font-weight: 800; }
.service-card a span { transition: transform .25s var(--ease); }
.service-card a:hover span { transform: translateX(4px); }
.center-action { display: flex; justify-content: center; margin-top: 46px; }

.about__grid, .team__grid, .contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.about__copy h2, .team__copy h2, .contact h2 { margin-bottom: 28px; }
.team__copy h2:first-of-type, .team__copy h2:first-of-type span { white-space: nowrap; }
.about__checks { display: grid; gap: 12px; margin: 30px 0 36px; }
.about__checks span { position: relative; padding-left: 34px; color: var(--title-dark); font-weight: 700; }
.about__checks span::before { content: ''; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); box-shadow: inset 0 0 0 6px rgba(41,45,50,.08); }
.about__visual { position: relative; min-height: 620px; }
.about-photo { position: absolute; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow-soft); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo--large { right: 0; top: 0; width: 72%; height: 430px; }
.about-photo--small { left: 0; bottom: 0; width: 58%; height: 300px; border: 10px solid var(--soft-gray); }
.about-stat { position: absolute; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; border-radius: 50%; background: var(--accent); color: var(--title-dark); box-shadow: 0 24px 70px rgba(220,235,63,.36); }
.about-stat strong { display: block; font-family: var(--font-head); font-size: 56px; line-height: .9; letter-spacing: -0.05em; }
.about-stat span { display: block; max-width: 100px; font-size: 13px; font-weight: 800; line-height: 1.25; }
.about-stat--one { left: 54px; top: 62px; }
.about-stat--two { right: 70px; bottom: 42px; background: var(--bg-green); color: #fff; box-shadow: 0 24px 70px rgba(25,95,166,.28); }

.portfolio__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}
.portfolio__head > div:first-child { min-width: 0; }
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: max-content;
}
.filter-btn { flex: 0 0 auto; white-space: nowrap; border: 0; border-radius: 999px; padding: 12px 18px; background: var(--soft-gray); color: var(--body-dark); font-weight: 800; transition: background .25s var(--ease), color .25s var(--ease); }
.filter-btn.is-active, .filter-btn:hover { background: var(--bg-green); color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.portfolio-card { position: relative; min-height: 430px; border-radius: 32px; overflow: hidden; background: #111; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), opacity .25s var(--ease); }
.portfolio-card.is-hidden { display: none; }
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.portfolio-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.74), transparent 58%); }
.portfolio-card div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 24px; color: #fff; }
.portfolio-card span { color: var(--accent); font-weight: 900; font-size: 13px; }
.portfolio-card h3 { margin: 8px 0 0; font-family: var(--font-head); font-size: 24px; line-height: 1.15; }

.testimonial-slider { position: relative; max-width: 980px; margin: 0 auto; }
.testimonial-track { position: relative; min-height: 430px; }
.testimonial-card { position: absolute; inset: 0; opacity: 0; pointer-events: none; transform: translateY(16px) scale(.98); transition: opacity .45s var(--ease), transform .45s var(--ease); padding: 42px; border-radius: 34px; background: #fff; border: 1px solid rgba(41,45,50,.06); box-shadow: var(--shadow-soft); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.testimonial-card.is-active { opacity: 1; pointer-events: auto; transform: none; }
.testimonial-card__top { display: inline-flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; color: var(--body-dark); font-size: 13px; font-weight: 800; }
.stars { color: #f4b93f; letter-spacing: 4px; font-size: 18px; }
.testimonial-card h3 { max-width: 760px; margin: 0 0 14px; font-family: var(--font-head); font-size: clamp(24px, 2.8vw, 36px); line-height: 1.14; }
.testimonial-card p { max-width: 690px; margin: 0 auto 18px; color: var(--body-dark); line-height: 1.72; }
.testimonial-card .testimonial-service { display: inline-flex; align-items: center; justify-content: center; max-width: min(100%, 720px); margin: 0 auto 26px; padding: 9px 14px; border-radius: 999px; background: rgba(25,95,166,.08); color: var(--accent-2); font-size: 13px; font-weight: 800; line-height: 1.35; }
.testimonial-person { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.testimonial-person > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-green); color: #fff; font-weight: 900; }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-person small { color: var(--body-dark); opacity: .72; margin-top: 3px; }
.slider-arrow { position: absolute; top: 42%; z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--bg-green); color: #fff; font-size: 34px; line-height: 1; box-shadow: var(--shadow-soft); }
.slider-arrow--prev { left: -24px; }
.slider-arrow--next { right: -24px; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0; background: rgba(25,95,166,.22); transition: width .25s var(--ease), background .25s var(--ease); }
.slider-dots button.is-active { width: 30px; background: var(--bg-green); }

.team__grid { grid-template-columns: 1.1fr .9fr; }
.team__visual { border-radius: 38px; overflow: hidden; box-shadow: var(--shadow-soft); background: var(--soft-gray); }
.team__visual img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
.team__copy > p:not(.eyebrow), .team-list { width: 80%; }
.team-list { display: grid; gap: 14px; margin-top: 34px; }
.team-list div { padding: 18px 20px; border-radius: 20px; background: var(--soft-gray); border: 1px solid rgba(25,95,166,.12); }
.team-list strong { display: block; font-family: var(--font-head); font-size: 20px; }
.team-list span { display: block; color: var(--body-dark); margin-top: 4px; }

.contact { position: relative; padding: 118px 0; overflow: visible; }
.contact::before { content: ''; position: absolute; inset: 0; z-index: 0; opacity: .15; background-image: none; background-size: 22px 22px; }
.contact__glow { position: absolute; z-index: -1; right: -160px; top: 80px; width: 560px; height: 560px; border-radius: 50%; filter: blur(125px); background: rgba(220,235,63,.28); }
.contact__grid { grid-template-columns: 1.05fr .95fr; position: relative; z-index: 1; overflow: visible; }
.contact h2 { font-size: clamp(38px, 5vw, 68px); }
.contact h2 span { color: var(--accent); }
@media (min-width: 769px) {
  .contact h2 .contact-heading__line { display: block; }
}
.contact-form-wrap { position: relative; z-index: 10; }
.contact-form { position: relative; z-index: 11; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.custom-select { position: relative; width: 100%; z-index: 1000; }
.custom-select__options { z-index: 99999 !important; }
.contact-form label { display: grid; gap: 8px; }
.contact-form span { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 800; }
.contact-form input { width: 100%; min-height: 56px; padding: 0 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; outline: none; transition: border-color .25s var(--ease), background .25s var(--ease); }
.contact-form select { width: 100%; min-height: 56px; padding: 0 44px 0 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; transition: border-color .25s var(--ease), background .25s var(--ease); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='.6' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.contact-form select option { color: var(--title-dark); background: #fff; padding: 14px 18px; font-size: 15px; font-weight: 500; }
.contact-form input::placeholder { color: rgba(255,255,255,.7); }
.contact-form input:focus, .contact-form select:focus { border-color: var(--accent); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(220,235,63,.15); }
/* Calculator Heading: hellerer Subtitle statt --body-dark (low contrast auf section-dark) */
.calculator .section-heading p:last-child {
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.65;
}

/* Angebotsrechner Kontaktformular (gespiegelt von .contact-form) */
.calc-step__lead {
  margin: 0 0 24px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.calc-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}
.calc-contact-section {
  min-width: 0;
  padding: 28px 0 4px;
  border-top: 1px solid rgba(220,235,63,.38);
}
.calc-contact-section:first-child {
  padding-top: 0;
  border-top: 0;
}
.calc-contact-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.calc-contact-section__header > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.calc-contact-section__header small {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #111827;
  font-size: 11px;
  font-weight: 900;
}
.calc-contact-section__header h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.15;
}
.calc-contact-section__header p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.calc-party-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.calc-section-toggle {
  display: inline-grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  max-width: 250px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.35;
  cursor: pointer;
}
.calc-section-toggle input[type="checkbox"],
.calc-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.calc-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  line-height: 1.55;
}
.calc-consent.is-invalid {
  border-color: #e25b5b;
  background: rgba(226,91,91,.09);
}
.calc-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}
.calc-submit-status {
  min-height: 0;
  margin: -4px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.calc-submit-status:empty { display: none; }
.calc-submit-status.is-loading { color: var(--accent); }
.calc-submit-status.is-success {
  padding: 13px 16px;
  border: 1px solid rgba(128,203,145,.62);
  border-radius: 12px;
  background: rgba(78,155,96,.14);
  color: #e9ffed;
}
.calc-submit-status.is-error {
  padding: 13px 16px;
  border: 1px solid rgba(255,126,126,.7);
  border-radius: 12px;
  background: rgba(174,48,48,.15);
  color: #ffe7e7;
}
.calc-submit-status.is-warning {
  padding: 13px 16px;
  border: 1px solid rgba(220,235,63,.45);
  border-radius: 12px;
  background: rgba(220,235,63,.08);
  color: rgba(255,255,255,.88);
}
.calc-mail-fallback {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#calcSubmit:disabled {
  cursor: wait;
  opacity: .76;
}
.calc-field {
  display: grid;
  gap: 8px;
}

/* Step 3 Detail Fields: Container als Grid mit 16px gap zwischen Sibling-Fields */
.calc-details {
  display: grid;
  gap: 16px;
}
#detailFields {
  grid-template-columns: minmax(130px, .7fr) minmax(220px, 1.3fr);
}
#detailFields > * {
  grid-column: 1 / -1;
}
#detailFields .calc-field--site-postal {
  grid-column: 1;
}
#detailFields .calc-field--site-city {
  grid-column: 2;
}
.calc-route-status {
  margin: 4px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .84rem;
  line-height: 1.55;
}
.calc-route-status.is-loading { border-color: rgba(220,235,63,.52); }
.calc-route-status.is-success { border-color: rgba(128,203,145,.62); background: rgba(78,155,96,.14); }
.calc-route-status.is-error { border-color: rgba(255,126,126,.7); background: rgba(174,48,48,.15); color: #ffe7e7; }
#calcSaveService:disabled { cursor: wait; opacity: .72; }
.calc-field--full { grid-column: 1 / -1; }
.calc-field--check {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}
.calc-field--check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.calc-field.calc-shared-address {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(220,235,63,.42);
  border-radius: 12px;
  background: rgba(220,235,63,.08);
  color: rgba(255,255,255,.9);
}
.calc-field.calc-shared-address input[type="checkbox"] {
  min-height: 18px;
  margin: 0;
}
.calc-field.calc-shared-address span {
  line-height: 1.35;
}
.calc-field.is-inherited input[readonly],
.calc-field.is-inherited textarea[readonly] {
  border-color: rgba(220,235,63,.28);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.72);
  cursor: not-allowed;
}
.calc-field > span {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.76);
}
.calc-field input,
.calc-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.calc-field textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 14px;
}
.calc-field input::placeholder,
.calc-field textarea::placeholder {
  color: rgba(255,255,255,.55);
}
.calc-field input:focus,
.calc-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(220,235,63,.15);
}
.calc-field.is-invalid input,
.calc-field.is-invalid textarea {
  border-color: #e25b5b;
  background: rgba(226,91,91,.08);
}
.calc-result__sent {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(220,235,63,.14);
  border: 1px solid rgba(220,235,63,.34);
  display: grid;
  gap: 6px;
}
.calc-result__sent strong {
  font-size: 16px;
  color: #fff;
}
.calc-result__sent span {
  font-size: 13px;
  color: rgba(255,255,255,.76);
}
.calc-result__sent a { color: var(--accent); }

@media (max-width: 640px) {
  .calc-contact,
  .calc-party-grid { grid-template-columns: 1fr; }
  .calc-contact-section__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .calc-section-toggle { max-width: none; }
  #detailFields { grid-template-columns: 1fr; }
  #detailFields .calc-field--site-postal,
  #detailFields .calc-field--site-city { grid-column: 1; }
}
.contact-form select:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }

/* Custom Select Dropdown */
.custom-select { position: relative; width: 100%; z-index: 1000; }
.custom-select__trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 56px; padding: 0 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font: inherit; text-align: left; transition: border-color .25s var(--ease), background .25s var(--ease); }
.custom-select__trigger:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.custom-select.is-open .custom-select__trigger { border-color: var(--accent); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(220,235,63,.15); }
.custom-select__value { font-size: 15px; }
.custom-select__arrow { transition: transform .25s var(--ease); }
.custom-select.is-open .custom-select__arrow { transform: rotate(180deg); }
.custom-select__options { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.05); overflow: visible; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 10000; }
.custom-select.is-open .custom-select__options,
.custom-select__options.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-select__option { padding: 14px 18px; font-size: 15px; color: var(--title-dark); cursor: pointer; transition: background .15s var(--ease), color .15s var(--ease); }
.custom-select__option:hover,
.custom-select__option.is-selected { background: var(--accent); color: #fff; }
.custom-select__option:first-child { border-radius: 16px 16px 0 0; }
.custom-select__option:last-child { border-radius: 0 0 16px 16px; }
.contact-form button { grid-column: 1 / -1; border: 0; margin-top: 6px; }
.contact-card { position: relative; z-index: 1; padding: 42px; border-radius: 36px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(18px); box-shadow: 0 30px 90px rgba(0,0,0,.18); isolation: isolate; }
.contact-card h3 { margin: 0 0 12px; font-family: var(--font-head); font-size: 34px; }
.contact-card p { color: rgba(255,255,255,.72); }
.contact-lines { display: grid; gap: 14px; margin: 32px 0; }
.contact-lines a, .contact-lines p { margin: 0; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.08); color: #fff; }
.contact-lines span { display: block; margin-bottom: 6px; color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.socials, .footer-socials { display: flex; gap: 10px; }
.socials a, .footer-socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--title-dark); font-weight: 900; text-transform: uppercase; }
.socials a svg, .footer-socials a svg { width: 20px; height: 20px; fill: currentColor; }
.socials a:hover { color: #fff; }
.footer-socials a:hover svg { fill: #000; }

.footer { padding: 74px 0 34px; background: var(--bg-green-deep); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 46px; }
.footer__logo { width: 220px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer p { color: rgba(255,255,255,.85); line-height: 1.7; margin: 0; }
.footer h3 { margin: 0 0 18px; font-family: var(--font-head); font-size: 18px; }
.footer a { display: block; color: rgba(255,255,255,.85); margin-bottom: 12px; transition: color .25s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer-socials a { display: grid; margin: 0; }
.footer__bottom { margin-top: 70px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: flex-start; align-items: center; gap: 24px; }
.footer__legal-links { display: inline-flex; gap: 18px; margin-left: auto; }
.footer__legal-links a { color: inherit; text-decoration: none; opacity: .85; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero__grid, .about__grid, .team__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 72px; }
  .hero__visual { min-height: auto; }
  .photo-card--hero { margin: 20px auto 0; }
  .floating-card--top { left: 16px; top: 36px; }
  .floating-card--bottom { right: 16px; bottom: 36px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__head { grid-template-columns: 1fr; align-items: flex-start; gap: 22px; }
  .filter-bar {
    justify-content: flex-start;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .team__copy > p:not(.eyebrow), .team-list { width: 100%; }
}

@media (max-width: 820px) {
  .container, .nav-shell { width: min(100% - 28px, var(--container)); }
  .site-header { top: 14px; left: 0; right: 0; max-width: 100vw; }
  .nav-shell { width: calc(100% - 28px); border-radius: 28px; padding: 10px 10px 10px 16px; min-height: 66px; flex-wrap: wrap; overflow: visible; box-shadow: 0 16px 50px rgba(0,0,0,.28); }
  .brand { min-width: 44px; flex: 1 1 auto; max-width: calc(100% - 76px); overflow: hidden; min-height: 44px; align-items: center; }
  .brand__logo { height: 34px; max-width: 100%; width: auto; object-fit: contain; }
  .nav-toggle { display: block; order: 3; }
  .nav-cta { display: none; }
  .nav-links { order: 4; width: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0 4px; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 4px; border-top: 1px solid rgba(255,255,255,.12); }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown__trigger { width: 100%; min-height: 48px; justify-content: space-between; padding: 0 4px; border-top: 1px solid rgba(255,255,255,.12); }
  .nav-dropdown__menu { position: static; width: 100%; padding: 4px 0 8px 12px; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; display: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: grid; transform: none; }
  .nav-dropdown__menu a { padding: 11px 12px; border: 0; background: rgba(255,255,255,.06); }
  .nav-dropdown__menu a + a { margin-top: 6px; }
  .nav-dropdown__menu small { color: rgba(255,255,255,.7); }
  .nav-links a::after { display: none; }
  .site-header.is-scrolled .nav-shell { transform: translateY(0); }
  .hero { padding-top: 128px; }
  .team__copy h2:first-of-type, .team__copy h2:first-of-type span { white-space: normal; }
  .hero__copy { text-align: center; align-items: center; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); letter-spacing: -1.5px; line-height: 1.05; max-width: 100%; white-space: normal; }
  .section-heading h2 { font-size: clamp(31px, 8.5vw, 53px); letter-spacing: -1px; line-height: 1.08; }
  .about h2, .portfolio h2, .team h2, .contact h2 { font-size: clamp(36px, 10vw, 60px); letter-spacing: -1.2px; line-height: 1.08; }
  .hero__lead { font-size: 17px; max-width: 460px; margin: 24px auto 0; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 38px;
    width: 100%;
  }
  .hero__stats div {
    min-width: 0;
    padding-left: 10px;
  }
  .hero__stats strong {
    font-size: clamp(21px, 7vw, 28px);
    letter-spacing: -0.04em;
  }
  .hero__stats span {
    font-size: 11px;
    line-height: 1.25;
    margin-top: 6px;
  }
  .btn { width: 100%; }
  .photo-card--hero img { height: 470px; }
  .floating-card { position: relative; inset: auto; width: 100%; margin-top: 14px; }
  .service-grid, .portfolio-grid, .contact-form, .footer__grid { grid-template-columns: 1fr; }
  .portfolio-card, .portfolio-card img { min-height: 360px; }
  .about__visual { min-height: 560px; }
  .about-photo--large { width: 88%; height: 360px; }
  .about-photo--small { width: 70%; height: 240px; }
  .about-stat { width: 126px; height: 126px; gap: 3px; }
  .about-stat strong { font-size: 45px; }
  .slider-arrow { display: none; }
  .testimonial-track { min-height: 500px; }
  .testimonial-card { padding: 30px 22px; }
  .testimonial-card h3 { font-size: clamp(22px, 7vw, 30px); }
  .testimonial-card__top { flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .testimonial-card .testimonial-service { border-radius: 18px; }
  .team__visual img { height: 380px; }
  .footer__bottom { align-items: center; flex-direction: column; }
  .footer__legal-links { margin-left: 0 !important; justify-content: center; align-self: center; }
  .footer__bottom > span[style*="margin-left"] { margin-left: 0 !important; justify-content: center; align-self: center; display: flex !important; }
  .footer__bottom p { text-align: center; }
  .footer { text-align: center; }
  .footer__logo { margin-inline: auto; }
  .footer p, .footer h3, .footer a { text-align: center; }
  .socials, .footer-socials { justify-content: center; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 30px); }
  a[href^="mailto:"], a[href^="tel:"] { min-height: 44px !important; display: inline-flex !important; align-items: center !important; padding: 12px 0 !important; line-height: 1.4 !important; }
  .hero, .services, .portfolio, .team, .about, .testimonials, .contact { padding-block: 64px; }
  .hero { padding-top: 126px; }
  .section-heading { margin-bottom: 36px; }
  .eyebrow { font-size: 12px; padding-right: 12px; }
  .trust-strip { padding: 34px 0 38px; }
  .trust-strip__inner { gap: 20px; }
  .trust-strip__logos { gap: 24px; }
  .trust-strip__badges { gap: 8px; }
  .testimonial-track { min-height: 560px; }
  .testimonial-card { padding: 28px 18px; }
  .testimonial-card p { font-size: 15px; line-height: 1.62; }
  .service-card { padding: 26px; min-height: auto; }
  .contact-card { padding: 28px; }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--fn-green, #DCEB3F);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 235, 63, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--fn-green-hover, #c7d832);
  box-shadow: 0 6px 20px rgba(220, 235, 63, 0.4);
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(-1px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #111827;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CALCULATOR / ANGEBOTSRECHNER
   ═══════════════════════════════════════════════════════════════════════════ */

.calculator {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.calculator__glow {
  position: absolute;
  top: 25%;
  right: -60px;
  left: auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,235,63,.32) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.calculator .container {
  position: relative;
  z-index: 1;
}

.calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .15;
  background-image: none;
  background-size: 22px 22px;
}
.calculator h2 span {
  color: var(--accent);
  font-style: normal;
}

.calc-wizard {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  border-radius: 36px;
  padding: 3rem;
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

/* Progress Bar */
.calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.calc-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.calc-progress__step.is-active,
.calc-progress__step.is-done {
  opacity: 1;
}

.calc-progress__step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,.76);
  transition: all 0.3s ease;
}

.calc-progress__step.is-active span {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.calc-progress__step.is-done span {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.calc-progress__step small {
  font-size: 0.75rem;
  color: rgba(255,255,255,.76);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-progress__bar {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: rgba(255,255,255,.16);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

/* Steps */
.calc-step {
  display: none;
  animation: calcFadeIn 0.4s ease;
}

.calc-step.is-active {
  display: block;
}

@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-step h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

/* Options (Step 1) */
.calc-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

/* Wenn ein einzelnes Item in der letzten Reihe alleine sitzt (ungerade Anzahl),
   zentriere es bei gleicher Breite wie die anderen Karten */
.calc-options > .calc-option:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: calc(50% - 0.75rem);
}

.calc-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  text-align: center;
  color: #fff;
}

.calc-option:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(220,235,63,.15);
}

.calc-option svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.calc-option strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.calc-option span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.76);
}

/* Services (Step 2) */
.calc-services {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.calc-service-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  text-align: left;
  color: #fff;
  font-size: 1rem;
}

.calc-service-btn:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
}

.calc-service-btn::before {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.76);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-field input,
.calc-field select,
.calc-field textarea {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.calc-field input::placeholder,
.calc-field textarea::placeholder {
  color: rgba(255,255,255,.7);
}

.calc-field input:focus,
.calc-field select:focus,
.calc-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(220,235,63,.15);
}

.calc-field textarea {
  min-height: 100px;
  resize: vertical;
}

/* Back Button */
.calc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  color: rgba(255,255,255,.76);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.calc-back:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
}

/* Result (Step 4) */
.calc-result {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.calc-result__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.calc-result__item:last-child {
  border-bottom: none;
}

/* Wenn ein Item direkt vor der Total-Section steht, soll dessen
   border-bottom wegfallen (sonst Doppel-Strich zwischen Item und Total). */
.calc-result__item:has(+ .calc-result__total) {
  border-bottom: none;
}

.calc-result__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.76);
}

.calc-result__value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.calc-result__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 2px solid rgba(255,255,255,.16);
}

.calc-result__total span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.calc-result__total .calc-result__value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

/* Actions */
.calc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.calc-disclaimer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.76);
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .calculator { scroll-margin-top: 96px; }

  .calc-wizard {
    padding: 2rem 1.5rem;
  }

  .calc-progress__step small {
    font-size: 0.65rem;
  }

  .calc-progress__bar {
    max-width: 30px;
  }

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

  .calc-options > .calc-option:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .calc-actions {
    flex-direction: column;
  }

  .calc-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ═══ TANK-RECHNER — ergänzende Styles ═══ */
/* Nutzt dieselben Klassen wie der Abscheider-Rechner (.calc-wizard, .calc-step, etc.) */
/* Nur wenige Ergänzungen für File-Upload und 2-Spalten-Layout der Detail-Felder */

#tankDetailFields,
#tankExtraFields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

#tankDetailFields .calc-field--full,
#tankExtraFields .calc-field--full {
  grid-column: 1 / -1;
}

/* File-Upload im dunklen Wizard */
#tankImageUpload {
  padding: 0.75rem 1rem !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  width: 100%;
}

#tankImageUpload::-webkit-file-upload-button {
  background: var(--accent);
  color: #111827;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0.75rem;
}

#tankImageUpload::file-selector-button {
  background: var(--accent);
  color: #111827;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0.75rem;
}

/* Responsive: 1-Spalte auf Mobile */
@media (max-width: 600px) {
  #tankDetailFields,
  #tankExtraFields {
    grid-template-columns: 1fr;
  }
}

/* custom-select im calc-field Kontext — dunkler Hintergrund */
.calc-field .custom-select {
  width: 100%;
}

.calc-field .custom-select__trigger {
  min-height: 56px;
}

/* calc-field label Abstand zum custom-select */
.calc-field > span + .custom-select {
  margin-top: 0;
}

/* Rechner-Feinschliff: bestehendes Layout bleibt unverändert */
.calc-option,
.calc-service-btn {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 12px 32px rgba(4,27,54,.08);
}

.calc-option svg {
  width: 56px;
  height: 56px;
  padding: 13px;
  border: 1px solid rgba(220,235,63,.28);
  border-radius: 16px;
  background: rgba(220,235,63,.12);
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.calc-option:hover svg,
.calc-option:focus-visible svg {
  transform: scale(1.04);
  background: rgba(220,235,63,.18);
  border-color: rgba(220,235,63,.5);
}

.calc-option:focus-visible,
.calc-service-btn:focus-visible,
.calc-back:focus-visible {
  outline: 3px solid rgba(220,235,63,.28);
  outline-offset: 3px;
}

.calc-service-btn::before {
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 5px 16px rgba(4,27,54,.16);
}

.calc-progress__step.is-active span {
  box-shadow: 0 0 0 5px rgba(220,235,63,.15), 0 8px 20px rgba(4,27,54,.15);
}

.calc-result__item {
  margin-bottom: .75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.calc-result__item:last-child {
  margin-bottom: 0;
}

.calc-result__item .calc-back {
  min-height: 40px;
  padding: .55rem .85rem;
}

.calc-result__item > div:first-child {
  min-width: 0;
  flex: 1 1 0;
}

.calc-result__item > div:last-child {
  flex: 0 0 auto;
}

.calc-result__meta {
  margin-top: .35rem;
  color: rgba(255,255,255,.94);
  font-size: .82rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.calc-result__item .calc-result__label {
  color: #fff;
  font-weight: 650;
}

.calc-result__item .calc-back {
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.28);
}

.calc-result__value {
  text-align: right;
  overflow-wrap: anywhere;
}

.calc-field input,
.calc-field select,
.calc-field textarea {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.fn-file-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.fn-file-input__button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: var(--accent);
  color: var(--fn-black-soft) !important;
  font-size: .88rem !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}

.fn-file-input__button:hover { background: var(--fn-green-hover); color: #fff !important; box-shadow: 0 8px 22px rgba(220,235,63,.22); }
.fn-file-input__name { min-width: 0; color: rgba(255,255,255,.86) !important; font-size: .88rem !important; font-weight: 500 !important; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fn-file-input input[type="file"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.fn-file-input:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(220,235,63,.15); }

.calc-field input[type="file"] {
  min-height: 62px;
  padding: 8px 10px;
  cursor: pointer;
}

.calc-field input[type="file"]::file-selector-button,
#tankImageUpload::file-selector-button {
  min-height: 44px;
  margin-right: 12px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: var(--accent);
  color: var(--fn-black-soft);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}

.calc-field input[type="file"]:hover::file-selector-button,
#tankImageUpload:hover::file-selector-button {
  background: var(--fn-green-hover);
  color: #fff;
  box-shadow: 0 8px 22px rgba(220,235,63,.22);
}

.calc-field input[type="file"]:focus-visible {
  outline: 3px solid rgba(220,235,63,.25);
  outline-offset: 3px;
}

.calc-field input[type="checkbox"] {
  accent-color: var(--accent);
}

.calc-field small {
  display: block;
  margin-top: .4rem;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .calc-option svg {
    width: 52px;
    height: 52px;
    padding: 12px;
  }

  .calc-actions .calc-back {
    width: 100%;
    justify-content: center;
  }

  .calc-result__item {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-result__item .calc-result__value {
    text-align: left;
  }

  .calc-result__item > div:last-child > div:last-child {
    width: 100%;
  }

  .calc-result__item > div:last-child > div:last-child .calc-back {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .calc-option svg {
    transition: none;
  }
}


/* Customer adjustment safeguards */
.hero::before,.contact::before,.calculator::before{background-image:none!important}.trust-strip__logos img{filter:none;opacity:1}.btn--primary:hover,.lp-card__cta:hover{background:#DCEB3F;color:#111827}.floating-card--middle{left:-32px;bottom:205px}.footer h2{font-size:18px;margin:0 0 18px}.footer-socials{flex-wrap:wrap}.footer-socials a{width:auto;height:auto;padding:8px 10px;border-radius:999px;font-size:11px;text-transform:none}.hero-checks{list-style:none;padding:0;margin:28px 0 0;display:grid;gap:14px}.hero-checks li{position:relative;padding-left:34px;color:rgba(255,255,255,.9);line-height:1.55}.hero-checks li::before{content:"✓";position:absolute;left:0;top:0;width:24px;height:24px;display:grid;place-items:center;border-radius:50%;background:var(--accent);color:var(--title-dark);font-weight:900}.customer-hero{background:#0F3F70}.customer-hero h1{font-size:clamp(46px,6vw,76px)}.about-label{position:absolute;z-index:3;padding:14px 18px;border-radius:18px;background:#fff;color:#111827;font-weight:800;box-shadow:var(--shadow-soft)}.about-label--one{right:0;top:382px}.about-label--two{left:0;bottom:12px}.review-placeholder{max-width:900px;margin:auto;padding:38px;border-radius:28px;background:#fff;display:flex;align-items:center;justify-content:space-between;gap:28px;box-shadow:var(--shadow-soft)}.review-placeholder p{margin:8px 0 0;color:var(--body-dark);line-height:1.65}.calculator-promo{padding:110px 0;background:#0F3F70}.calculator-promo__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.calculator-promo__card{padding:34px;border:1px solid rgba(255,255,255,.16);border-radius:28px;background:rgba(255,255,255,.09);color:#fff;transition:transform .25s,background .25s}.calculator-promo__card:hover{transform:translateY(-4px);background:rgba(255,255,255,.14)}.calculator-promo__card>span{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;background:var(--accent);color:#111827;font-weight:900}.calculator-promo__card h3{font-size:28px;margin:22px 0 10px}.calculator-promo__card p{color:rgba(255,255,255,.8);line-height:1.65}.calculator-promo__card strong{color:var(--accent)}.calculator-promo__card.light{background:#fff;color:#111827;border-color:rgba(15,63,112,.12)}.calculator-promo__card.light p{color:var(--body-dark)}.simple-hero,.calculator-page-intro{padding:170px 0 96px;background:#0F3F70}.simple-hero .container,.calculator-page-intro .container{max-width:900px;text-align:center}.simple-hero .eyebrow,.calculator-page-intro .eyebrow{margin-inline:auto}.simple-hero h1,.calculator-page-intro h1{font-size:clamp(46px,8vw,82px);margin:0;color:#fff;letter-spacing:-.05em}.simple-hero h1 span{color:var(--accent)}.simple-hero p:last-child,.calculator-page-intro p:last-child{max-width:800px;margin:24px auto 0;color:rgba(255,255,255,.82);font-size:18px;line-height:1.7}.calculator-page-intro+.calculator{padding-top:70px}.contact-calculators,.locations,.jobs-page{padding:100px 0}.contact-page{padding:100px 0}.contact-page__grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px}.contact-page__grid h2{font-size:clamp(34px,5vw,54px)}.contact-page__form{display:grid;gap:16px;padding:34px;background:#F1F1F1;border-radius:28px}.contact-page__form label{display:grid;gap:8px;font-weight:700}.contact-page__form input,.contact-page__form select,.contact-page__form textarea{width:100%;padding:15px 16px;border:1px solid rgba(15,63,112,.2);border-radius:14px;background:#fff;font:inherit}.social-link-list{display:flex;gap:8px;flex-wrap:wrap;margin-top:28px}.social-link-list a{padding:10px 13px;border-radius:999px;background:var(--accent);color:#111827;font-size:13px;font-weight:800}.locations__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.locations article{padding:30px;background:#fff;border-radius:24px;box-shadow:var(--shadow-soft)}.locations article h3{font-size:25px;margin:0 0 12px}.locations article p{line-height:1.7;color:var(--body-dark)}.locations article a{color:var(--fn-blue);font-weight:800}.hero-contact-pills{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:30px}.hero-contact-pills a{padding:12px 16px;border-radius:999px;background:#fff;color:#0F3F70;font-weight:800}.team-page{padding:100px 0}.team-structure{max-width:900px;margin:0 auto 60px;border-radius:28px;overflow:hidden;box-shadow:var(--shadow-soft)}.team-locations{display:grid;gap:18px}.team-locations details{border:1px solid rgba(15,63,112,.14);border-radius:24px;background:#F1F1F1;overflow:hidden}.team-locations summary{list-style:none;display:flex;justify-content:space-between;align-items:center;padding:24px 28px;cursor:pointer;font-size:25px;font-weight:800}.team-locations summary::-webkit-details-marker{display:none}.team-locations summary small{font-size:13px;color:var(--fn-blue)}.employee-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;padding:0 24px 24px}.employee-card{padding:26px;border-radius:20px;background:#fff}.employee-avatar{width:58px;height:58px;display:grid;place-items:center;border-radius:18px;background:var(--accent);font-weight:900}.employee-card h2{font-size:20px;margin:18px 0 7px}.employee-card p{margin:0;color:var(--body-dark)}.employee-card.placeholder{border:1px dashed rgba(15,63,112,.25)}.jobs-page__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}.jobs-page__grid>img{width:100%;height:620px;object-fit:cover;border-radius:32px}.jobs-page__grid h2{font-size:clamp(34px,5vw,54px)}.jobs-page__grid p{line-height:1.7;color:var(--body-dark)}.text-link{display:inline-block;margin:20px 0 0 18px;color:var(--fn-blue);font-weight:800}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.article-hero{padding:170px 0 90px;background:#0F3F70}.article-hero h1{font-size:clamp(42px,7vw,76px);max-width:980px;margin:0;color:#fff}.article-hero p:last-child{max-width:760px;color:rgba(255,255,255,.82);font-size:18px;line-height:1.7}.article-layout{max-width:980px;padding-top:70px;padding-bottom:90px}.article-image img{width:100%;height:min(70vh,680px);object-fit:cover;border-radius:30px}.bs-content{max-width:780px;margin:50px auto 0}.bs-content>h2{font-size:clamp(32px,5vw,52px)}.article-intro,.bs-section p,.bs-closing{font-size:17px;line-height:1.8;color:var(--body-dark)}.bs-section{padding:34px 0;border-bottom:1px solid rgba(15,63,112,.14)}.bs-section h2{font-size:28px}.bs-section ul{display:grid;gap:10px;padding-left:22px}.bs-section li{line-height:1.6}.article-cta{padding:90px 0;text-align:center}.article-cta .text-link{display:block;margin:22px 0 0}.article-notice{padding:16px;border-radius:14px;background:#fff3cd;color:#5d4b00}@media(max-width:820px){.floating-card--middle{position:relative;inset:auto}.calculator-promo__grid,.locations__grid,.employee-grid,.jobs-page__grid,.contact-page__grid{grid-template-columns:1fr}.review-placeholder{align-items:flex-start;flex-direction:column}.about-label{position:relative;inset:auto;margin-top:12px}.jobs-page__grid>img{height:420px}.simple-hero,.calculator-page-intro{padding:140px 0 70px}.footer-socials{justify-content:center}.hero-contact-pills{flex-direction:column}.hero-contact-pills a{width:100%}}
