/* DESIGN VARIABLEN */
:root {
  --color-bg: #fffef2;
  --color-bg-soft: #fff9dd;
  --color-white: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #667085;
  --color-dark: #111827;
  --color-dark-soft: #1f2937;
  --color-dark-blue: #0f172a;
  --color-accent: #f5b400;
  --color-accent-dark: #d99a00;
  --color-accent-soft: #ffd34d;
  --color-border: rgba(17, 24, 39, 0.10);
  --radius-card: 22px;
  --radius-large: 30px;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 26px 60px rgba(15, 23, 42, 0.18);
  --shadow-btn-primary: 0 12px 24px rgba(245, 180, 0, 0.32);
  --shadow-btn-dark: 0 12px 24px rgba(17, 24, 39, 0.34);
  --focus-ring: 0 0 0 3px rgba(245, 180, 0, 0.34);
  --transition-smooth: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-enterprise: 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET UND BASIS */
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 180, 0, 0.10), transparent 32rem),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* LAYOUT HILFSKLASSEN */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 2.8rem 0;
}

.card,
.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  overflow: hidden;
}

.card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(245, 180, 0, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.grid-3 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.muted {
  color: var(--color-muted);
  padding-top: 1rem;
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 1.7rem;
}

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

.section-heading h2 {
  margin: .35rem 0 .65rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1vw, 1.08rem);
  max-width: 66ch;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: .55rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4b5563;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(148, 163, 184, 0.9);
}

/* HEADER UND NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: .65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 72px;
}

.main-nav {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  padding: .45rem .5rem;
  color: var(--color-dark);
  font-weight: 600;
  transition: color var(--transition-smooth);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .18rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
  opacity: .75;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--color-dark);
  padding: .56rem .86rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

/* MOBILE NAVIGATION */
.mobile-nav {
  display: none;
  margin: .2rem 4% .95rem;
  padding: .48rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.92));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.24);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: rgba(248, 250, 252, 0.95);
  padding: .78rem .65rem;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: transform var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mobile-nav a:not(:nth-child(-n+2)) {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a.btn {
  margin-top: .12rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
  border-radius: 12px;
}

.mobile-nav a[href*="#"] {
  scroll-margin-top: 110px;
}

.mobile-nav.is-open {
  display: grid;
  animation: mobile-nav-reveal 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: 44px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent));
  border-color: rgba(217, 154, 0, 0.42);
  color: #111;
  box-shadow: 0 8px 18px rgba(245, 180, 0, 0.24);
}

.btn-dark {
  background: linear-gradient(135deg, var(--color-dark-soft), var(--color-dark));
  border-color: rgba(255, 255, 255, 0.10);
  color: #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.26);
}

.btn-secondary {
  background: #fff;
  border-color: #cbd5e1;
  color: #1f2937;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.btn:focus-visible,
.main-nav a:focus-visible,
.mobile-nav a:focus-visible,
.faq-question:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.main-nav a:focus-visible {
  color: var(--color-accent-dark);
}

.mobile-nav a:focus-visible {
  color: #fff;
  border-color: rgba(245, 180, 0, 0.46);
  background: rgba(245, 180, 0, 0.16);
}

.mobile-nav a:active {
  transform: scale(0.98);
  background: rgba(245, 180, 0, 0.18);
}

/* HERO BEREICH */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 254, 242, 0.96));
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: clamp(580px, 42vw, 760px);
  max-height: 780px;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.03);
  animation: hero-image-zoom 1500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(102deg, rgba(11, 17, 32, 0.86) 7%, rgba(12, 20, 35, 0.66) 42%, rgba(12, 20, 35, 0.38) 72%, rgba(8, 13, 25, 0.78) 100%),
    radial-gradient(circle at 22% 26%, rgba(245, 180, 0, 0.2), transparent 28rem);
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: 3.4rem;
  padding-bottom: clamp(7rem, 11vw, 10rem);
}

.hero-content {
  width: min(660px, 100%);
  max-width: min(660px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(13, 21, 38, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(1.3rem, 2.1vw, 2.1rem);
  box-shadow: 0 18px 42px rgba(4, 9, 22, 0.44);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  margin-bottom: 1.05rem;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.92);
  padding: .36rem .65rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-kicker-line {
  width: 16px;
  height: 1px;
  background: rgba(245, 180, 0, 0.88);
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-text {
  max-width: 620px;
  margin: 1.25rem 0 1.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.6;
}

.hero-actions {
  gap: .75rem;
}

.hero-actions .btn {
  min-width: 182px;
}

.hero-trust {
  display: grid;
  gap: .5rem;
  margin-top: 1.3rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  color: rgba(226, 232, 240, 0.94);
  font-size: .9rem;
  font-weight: 500;
}

.hero-trust span::before {
  content: "✓";
  color: rgba(245, 180, 0, 0.95);
  font-weight: 700;
}

.hero-trust strong {
  color: #ffffff;
  font-weight: 700;
}

/* STARTSEITEN CARDS UND GRIDS */
.section-overlap {
  position: relative;
  z-index: 2;
  margin-top: clamp(-3rem, -4.2vw, -1.8rem);
}

.info-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.1rem;
}

.card-with-image {
  overflow: hidden;
}

.card-with-image h3 {
  position: relative;
  margin: 0 0 .6rem;
  font-size: 1.1rem;
}

.card-with-image p {
  position: relative;
  margin: 0;
  color: #344054;
}

.card-image {
  position: relative;
  width: 100%;
  height: 178px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  background: #ffffff;
}

.image-contain {
  object-fit: contain;
  object-position: center;
  padding: 1rem;

}

.phone-card-image {
  width: auto;
  object-fit: contain;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
  padding: 1.1rem;
  border-radius: 24px;
}

.service-card .card-image {
  height: 190px;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: #0f4c81;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.12rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: transform var(--transition-smooth);
}

/* SERVICE BAND */
.service-band {
  margin: 2.2rem 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 180, 0, 0.18), transparent 22rem),
    linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}

.service-band-inner {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.service-band-content {
  max-width: 620px;
}

.service-band-content h2 {
  margin: .45rem 0 .75rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.service-band-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-band-list {
  display: grid;
  gap: .85rem;
}

.service-band-list div {
  display: flex;
  align-items: center;
  gap: .85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.service-band-list strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #111827;
}

.service-band-list span {
  font-weight: 800;
}

/* EINSATZGEBIET */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.1rem;
}

.chips span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 999px;
  padding: .52rem .88rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-weight: 700;
}

.map-placeholder {
  min-height: 220px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.map-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

/* TRUST BEREICH */
.trust-section {
  padding-top: 1.5rem;
}

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

.trust-card {
  display: grid;
  gap: .35rem;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.trust-card strong {
  font-size: 1rem;
}

.trust-card span {
  color: var(--color-muted);
}

/* ÜBER UNS VORSCHAU */
.about-preview {
  padding-top: 1.5rem;
}

.about-card {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at top left, rgba(245, 180, 0, 0.22), transparent 18rem),
    linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
}

.about-card h2 {
  margin: .45rem 0 .7rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.about-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.about-action {
  display: flex;
  justify-content: flex-end;
}



/* ÜBER UNS SEITE */
.about-page {
  display: grid;
  gap: 1.25rem;
}

.about-page h1 {
  margin: .4rem 0 .7rem;
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}

.about-page h2 {
  margin: .3rem 0 .7rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark-blue);
}

.about-page h3 {
  margin: 0;
  font-size: 1.06rem;
  color: #0b223f;
}

.about-page p {
  margin: 0;
}

.about-hero,
.about-logo-section {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  padding: clamp(1.2rem, 2vw, 2rem);
}

.about-hero-subheadline {
  font-weight: 700;
  color: #22334d;
}

.about-logo-content {
  display: grid;
  gap: .85rem;
}

.about-media-placeholder {
  display: grid;
  place-content: center;
  text-align: center;
  gap: .65rem;
  border-radius: 20px;
  padding: 1rem;
}

.about-media-placeholder strong {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.about-media-placeholder span {
  color: #475467;
  max-width: 38ch;
}

.about-media-placeholder-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.about-media-placeholder-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  justify-self: end;
}

.about-media-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.about-media-placeholder-hero img {
  object-fit: cover;
}

.about-media-placeholder-logo img {
  object-fit: contain;
  padding: clamp(.65rem, 2vw, 1rem);
}

.about-values-grid,
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-value-card,
.about-process-card {
  display: grid;
  gap: .6rem;
}

.about-process-card span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(245, 180, 0, 0.2);
  color: #6b4a00;
}

.about-reasons {
  padding: clamp(1.2rem, 2vw, 2rem);
}

.about-reasons-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.about-reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.about-reasons-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: .46rem;
  flex: 0 0 8px;
  background: var(--color-accent);
}

.about-claim,
.about-cta {
  padding: clamp(1.2rem, 2vw, 2rem);
}

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

.about-cta {
  text-align: center;
  background: linear-gradient(145deg, rgba(245, 180, 0, 0.16), rgba(255, 255, 255, 0.92));
}

.about-cta-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: .7rem;
}

/* FORMULARE */

.contact-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: stretch;
  padding-bottom: 1rem;
}

.contact-intro-card h1 {
  margin: .4rem 0 .7rem;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.contact-info-card h2 {
  margin: .2rem 0 .8rem;
  font-size: 1.2rem;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.enterprise-contact-card {
  padding: clamp(1.2rem, 2vw, 2rem);
}

.enterprise-contact-card h2 {
  margin-top: .2rem;
  margin-bottom: .4rem;
}

.contact-form label {
  color: var(--color-dark);
}

.form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: #cbd5e1;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.checkbox-label a,
.privacy-field a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal {
  max-width: 920px;
}

.legal h1,
.legal h2 {
  color: var(--color-dark-blue);
}

.legal h2 {
  margin-top: 1.8rem;
}

.legal ul {
  padding-left: 1.2rem;
}
.contact-section {
  scroll-margin-top: 110px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-weight: 700;
  margin-bottom: .9rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: .78rem;
  color: var(--color-text);
  background: #ffffff;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.privacy-field {
  margin-bottom: .9rem;
}

.privacy-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.privacy-checkbox-row input {
  width: auto;
  margin-right: 0;
  margin-top: .2rem;
  flex-shrink: 0;
}

.checkbox-label {
  display: block !important;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
}

.checkbox-text {
  display: inline;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.toast-region {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  display: grid;
  gap: .65rem;
  z-index: 1200;
  pointer-events: none;
}

.toast-message {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: flex-start;
  padding: .9rem .95rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.98);
  animation: toast-enter 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .95rem;
}

.toast-content {
  min-width: 0;
}

.toast-title {
  margin: 0;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.toast-text {
  margin: .16rem 0 0;
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.4;
}

.toast-close {
  border: 0;
  background: transparent;
  color: #4b5563;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.toast-close:hover,
.toast-close:focus-visible {
  background: rgba(17, 24, 39, 0.08);
  outline: none;
}

.toast-message.success {
  border-color: rgba(22, 163, 74, 0.28);
}

.toast-message.success .toast-icon {
  color: #166534;
  background: rgba(22, 163, 74, 0.16);
}

.toast-message.error {
  border-color: rgba(220, 38, 38, 0.3);
}

.toast-message.error .toast-icon {
  color: #991b1b;
  background: rgba(220, 38, 38, 0.14);
}

.toast-message.info {
  border-color: rgba(59, 130, 246, 0.28);
}

.toast-message.info .toast-icon {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.14);
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* FAQ */
.faq-section {
  padding-top: 1.5rem;
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 3rem 1rem 1rem;
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(245, 180, 0, 0.18);
  color: #8a5f00;
  transform: translateY(-50%);
  transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-enterprise);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 1rem;
  color: var(--color-muted);
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1rem;
}

.faq-item.open .faq-question::after {
  background: var(--color-accent);
  color: #111827;
  transform: translateY(-50%) rotate(45deg);
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  flex-shrink: 0;
  margin-top: auto;
}

.site-footer .container {
  padding: 1.8rem 0;
}

.footer-grid {
  display: grid;
  gap: .85rem 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid section {
  display: grid;
  align-content: start;
  gap: .5rem;
}

.footer-grid h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.2;
}

.footer-grid p,
.footer-grid ul {
  margin: 0;
}

.footer-grid ul {
  padding-left: 1rem;
}

.site-footer a {
  color: #f8d260;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: .85rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p + p {
  margin-top: .5rem;
}

/* MOBILE CALL BAR */
.mobile-call-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  gap: .6rem;
  background: var(--color-white);
  padding: .55rem .55rem calc(.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
  z-index: 90;
}

.mobile-call-bar .btn {
  flex: 1;
  text-align: center;
}

/* ANIMATIONEN */
.reveal-on-load {
  opacity: 0;
  transform: translateY(22px);
}

body.is-loaded .reveal-on-load {
  animation: intro-reveal 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-loaded .hero-content.reveal-on-load {
  animation-delay: 160ms;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes intro-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-zoom {
  from {
    opacity: 0;
    transform: scale(1.12);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes mobile-nav-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* HOVER EFFEKTE */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn:hover::before {
    transform: translateX(120%);
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #ffd95f, var(--color-accent-dark));
    box-shadow: var(--shadow-btn-primary);
  }

  .btn-dark:hover {
    background: linear-gradient(135deg, #273447, #0f172a);
    border-color: rgba(245, 180, 0, 0.24);
    box-shadow: var(--shadow-btn-dark);
  }

  .main-nav a:hover {
    color: var(--color-accent-dark);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .mobile-nav a:hover {
    color: #fff;
    border-color: rgba(245, 180, 0, 0.4);
    background: rgba(245, 180, 0, 0.16);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 180, 0, 0.35);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15);
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  }

  .card:hover::before {
    opacity: 1;
  }

  .costcalc-grid .cost-step:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }

  .costcalc-grid .cost-step:hover::before {
    opacity: 0;
  }

  .text-link:hover::after {
    transform: scaleX(1);
  }

  .trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
  }

  .card,
  .contact-card,
  .trust-card {
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .hero-image {
    min-height: 520px;
  }

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

@media (max-width: 960px) {
  .hero-image {
    min-height: 500px;
  }

  .grid-3,
  .footer-grid,
  .info-grid,
  .contact-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .container {
    padding: 1.55rem 0;
  }

  .main-nav,
  .nav-call {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand-logo {
    height: 48px;
  }

  .hero-inner {
    padding-top: 3rem;
    padding-bottom: 5.4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .service-band-inner {
    grid-template-columns: 1fr;
  }

   .about-card {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-logo-section,
  .about-values-grid,
  .about-process-grid,
  .about-trust-grid,
  .about-reasons-list {
    grid-template-columns: 1fr;
  }

  .about-media-placeholder-logo {
    justify-self: center;
    width: 100%;
  }

  .about-action {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 1.35rem, 1200px);
    padding: 2rem 0;
  }

  .nav-wrap {
    min-height: 76px;
    padding: .5rem 0;
    gap: .7rem;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .mobile-nav a:nth-child(odd) {
    border-right: 0;
  }

  .mobile-nav a:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .grid-3,
  .footer-grid,
  .info-grid,
  .form-grid,
  .form-grid-2,
  .trust-grid,
  .contact-intro-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    padding: 1.35rem 0;
  }

  .footer-grid {
    gap: .75rem;
  }

  .footer-bottom {
    padding-top: .72rem;
  }

  .mobile-call-bar {
    display: flex;
  }

  .toast-region {
    top: calc(86px + env(safe-area-inset-top));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(420px, calc(100vw - 1.4rem - env(safe-area-inset-left) - env(safe-area-inset-right)));
    gap: .55rem;
  }

  .toast-message {
    border-radius: 14px;
    padding: .82rem .82rem;
  }

  .hero-inner {
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 4.5rem;
  }

  .hero-content {
    width: min(100%, 430px);
    margin: 0 auto;
    margin-top: 3rem;
    padding: .95rem;
    border-radius: 22px;
    background: rgba(13, 21, 38, 0.38);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.06;
  }

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

  .hero-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    gap: .58rem;
  }

  .hero-trust span {
    font-size: .86rem;
    line-height: 1.3;
  }

  .hero-image {
    min-height: 510px;
    object-position: center 33%;
  }

  .card,
  .contact-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .card-image {
    height: clamp(150px, 44vw, 190px);
    margin-bottom: 1rem;
  }

  .service-card .card-image {
    height: 175px;
  }

  .service-band {
    margin: 1rem 0;
  }

  .service-band-list div {
    align-items: flex-start;
  }

   .about-card {
    padding: 1.35rem;
  }

  .about-page {
    gap: 1rem;
  }

  .about-page h1,
  .about-page h2 {
    font-size: clamp(1.58rem, 7.6vw, 1.98rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .about-page h3 {
    font-size: 1.02rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .about-page p,
  .about-page li,
  .about-page .muted,
  .about-page span {
    font-size: .98rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .about-page .section-kicker {
    font-size: .84rem;
    letter-spacing: .11em;
  }

  .about-hero,
  .about-logo-section,
  .about-reasons,
  .about-claim,
  .about-cta {
    padding: 1.2rem;
    gap: .95rem;
  }

  .about-value-card,
  .about-process-card,
  .about-trust-grid .trust-card {
    gap: .5rem;
    padding: 1.05rem;
  }

  .about-reasons-list li {
    padding: .72rem .8rem;
    line-height: 1.5;
  }

  .about-media-placeholder-hero {
    aspect-ratio: 4 / 3;
  }

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

  .about-cta-actions .btn {
    width: 100%;
  }

  .section-heading h2 {
    letter-spacing: -0.035em;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 17, 32, 0.58), rgba(11, 17, 32, 0.36)),
      radial-gradient(circle at 30% 20%, rgba(245, 180, 0, 0.16), transparent 20rem);
  }
}

@media (max-width: 480px) {
  .hero-image {
    min-height: 620px;
    object-position: center center;
  }

  .hero-content {
    border-radius: 22px;
    padding: .98rem;
  }

  .hero-text {
    margin: .85rem 0 1rem;
    font-size: .95rem;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 8px;
    font-size: .9rem;
    min-width: 0;
  }

  .brand span {
    display: inline-block;
    max-width: 185px;
    line-height: 1.2;
  }

  .brand-logo {
    height: 40px;
  }

  .menu-toggle {
    padding: .45rem .68rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .hero-kicker,
  .section-kicker {
    font-size: .76rem;
  }

  .hero-kicker {
    letter-spacing: .05em;
    margin-bottom: .78rem;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 8.8vw, 2.25rem);
  }

  .hero-text {
    font-size: .96rem;
  }

  .site-footer {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .mobile-call-bar {
    padding: .48rem;
  }

  .mobile-call-bar .btn {
    min-height: 42px;
    padding: .65rem .65rem;
    font-size: .88rem;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-load,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-image {
    transform: none !important;
  }

}


.services-overview h1,
.service-detail-page h1 {
  margin: .35rem 0 .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}

.service-overview-grid {
  align-items: stretch;
}

.service-overview-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  height: 100%;
  padding: 1rem;
}

.service-overview-image-wrap {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #e5e7eb;
}

.service-overview-image {
  width: 100%;
  height: clamp(180px, 18vw, 210px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-overview-card h3 {
  margin: .2rem 0 0;
}

.service-overview-card p {
  margin: 0;
  color: #334155;
}

.service-overview-card .btn {
  margin-top: auto;
  width: fit-content;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .8rem;
  color: #475569;
  font-weight: 600;
}

.service-breadcrumb a {
  text-decoration: none;
}

.service-hero {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.25fr .95fr;
  padding: clamp(1.3rem, 2vw, 2rem);
}

.service-hero-intro {
  margin: 0;
  color: #334155;
  max-width: 62ch;
}

.service-media {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  object-fit: cover;
  object-position: center;
  display: block;
  background: #e5e7eb;
}

.service-hero-image {
  min-height: 280px;
  height: 100%;
}

.service-trust-grid {
  margin: 1.05rem 0 1.25rem;
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-trust-item {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding: .8rem .95rem;
  color: #1f2937;
  font-weight: 650;
}

.service-main-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.45fr .9fr;
}

.service-main-card h2,
.service-detail-cta h2 {
  margin: .2rem 0 .55rem;
  color: #0f172a;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.service-main-card p {
  margin: 0 0 1.1rem;
  color: #334155;
}

.service-steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .75rem;
}

.service-steps-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: .7rem .8rem;
}

.service-step-index {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #111827;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent));
}

.service-steps-list p,
.service-benefits-list {
  margin: 0;
  color: #334155;
}

.service-side-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-side-image {
  margin-top: .25rem;
  min-height: 220px;
}

.service-benefits-list {
  padding-left: 1.15rem;
}

.service-benefits-list li + li {
  margin-top: .55rem;
}

.service-detail-cta {
  margin-top: 1.1rem;
  text-align: left;
}

.service-detail-cta p {
  margin-top: .35rem;
  color: #334155;
  max-width: 68ch;
}

@media (max-width: 1100px) {
  .service-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-hero,
  .service-main-layout {
    grid-template-columns: 1fr;
  }

  .service-hero-image {
    min-height: 170px;
  }

  .service-side-image {
    min-height: 190px;
  }
}

@media (max-width: 700px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-image {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .service-trust-grid {
    grid-template-columns: 1fr;
  }

  .service-breadcrumb {
    font-size: .95rem;
    flex-wrap: wrap;
  }
}


@media (max-width: 700px) {
  .toast-region {
    max-height: calc(100vh - 190px - env(safe-area-inset-bottom));
    overflow-y: auto;
    padding-inline: .1rem;
  }
}

.costcalc-page {
  display: grid;
  gap: 1rem;
}

.costcalc-head h1 {
  margin: .5rem 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.costcalc-form {
  display: grid;
  gap: 1rem;
}

.costcalc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cost-step h2 {
  margin-top: 0;
}

.cost-step h3 {
  margin: .85rem 0 .45rem;
  font-size: 1rem;
}

.cost-step-desc {
  color: var(--color-muted);
  margin-top: -.2rem;
}

.choice-group {
  display: grid;
  gap: .55rem;
  margin: .5rem 0 .7rem;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .7rem;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
}

.choice-group input {
  width: auto;
}

.conditional-block {
  display: none;
  margin-top: .65rem;
  border-top: 1px dashed #d1d5db;
  padding-top: .8rem;
}

.conditional-block.is-visible {
  display: block;
}

.field-error {
  margin: .2rem 0 .6rem;
  color: #b91c1c;
  font-weight: 600;
}

.cost-actions {
  display: grid;
  gap: .7rem;
}

.cost-submit-wrap {
  width: min(100%, 320px);
  margin: 0 auto;
  display: grid;
  gap: .55rem;
}

.cost-submit-wrap .btn {
  width: 100%;
}

.cost-submit-wrap .btn-secondary {
  width: min(100%, 220px);
  justify-self: center;
}

.cost-note {
  margin: 0;
  font-size: .95rem;
  color: #475569;
}

.result-box {
  background: linear-gradient(160deg, #0f172a, #111827);
  color: #e2e8f0;
}

.result-box h2 {
  margin-top: 0;
  color: #fff;
}

.cost-breakdown {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: .45rem;
}

.cost-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: .4rem;
}

.result-total p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cost-breakdown .cost-label,
.result-total .cost-label {
  min-width: 0;
}

.cost-breakdown .cost-amount,
.result-total .cost-amount {
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.result-total .grand {
  margin-top: .7rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(245, 180, 0, .45);
  font-size: 1.15rem;
  color: #fde68a;
}

@media (max-width: 1000px) {
  .costcalc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .costcalc-grid {
    grid-template-columns: 1fr;
  }

  .cost-submit-wrap {
    width: 100%;
  }

  .cost-submit-wrap .btn-secondary {
    width: 100%;
  }
}

.required-fields-note {
  margin: .15rem 0 .65rem;
  color: #64748b;
  font-size: .9rem;
  font-weight: 600;
}

.form-field.has-error {
  color: #b91c1c;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: #ef4444;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10);
}

.privacy-field.has-error {
  border: 1px solid rgba(239, 68, 68, 0.55);
  border-radius: 12px;
  background: #fffafa;
  padding: .65rem .75rem;
}

.field-error {
  display: none;
  color: #b91c1c;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-field.has-error .field-error:not(:empty) {
  display: block;
}

.privacy-field .field-error {
  margin: .45rem 0 0 1.35rem;
}
