:root {
  --bg: #fcf5e8;
  --dunkel: #2b2b2b;
  --teal: #3c6478;
  --akzent: #3c6478;
  --rand: #d4cfc4;
  --text-soft: #717171;
  --line: #d4cfc4;
  --ok-bg: #ebf8ef;
  --ok-line: #b8ddc2;
  --ok-text: #2a7b45;
  --warn-bg: #fff5e8;
  --warn-line: #f0d8a9;
  --warn-text: #8a5a11;
  --err-bg: #fff0f0;
  --err-line: #ecc2c2;
  --err-text: #a22929;
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Manrope', 'Verdana', sans-serif;
  color: var(--dunkel);
  background: var(--bg);
}

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

.wrap {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(252, 245, 232, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 207, 196, 0.85);
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-bild {
  width: 34px;
  height: 34px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.navbar-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-wordmark-gross {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1a3560;
}

.navbar-wordmark-klein {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 2px;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.navbar-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.navbar-links a.aktiv,
.navbar-links a:hover { color: var(--dunkel); }

.navbar-cta {
  padding: 9px 20px;
  border: 1.5px solid rgba(43,43,43,0.38);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--text);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.navbar-cta:hover {
  background: var(--dunkel);
  color: var(--bg);
  border-color: var(--dunkel);
}

.navbar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch { position: relative; display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(43,43,43,0.30);
  border-radius: 999px;
  background: rgba(252, 245, 232, 0.94);
}

.lang-switch-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(60, 100, 120, 0.08);
  color: var(--akzent);
  flex-shrink: 0;
}

.lang-switch-icon svg {
  width: 12px;
  height: 12px;
  display: block;
}

.lang-switch-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);

}

.lang-switch-link.aktiv {
  color: var(--dunkel);
}
.lang-switch-link:focus,
.lang-switch-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.lang-switch-link.inaktiv {
  opacity: 0.4;
  cursor: not-allowed;
}

.lang-switch-sep {
  width: 1px;
  height: 11px;
  background: rgba(123, 123, 123, 0.26);
}
.lang-switch-hinweis {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  max-width: min(280px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid rgba(212, 207, 196, 0.92);
  border-radius: 14px;
  background: rgba(252, 245, 232, 0.96);
  box-shadow: 0 16px 32px rgba(43, 43, 43, 0.12);
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lang-switch-hinweis.ist-sichtbar {
  opacity: 1;
  transform: translateY(0);
}
.lang-switch-hinweis strong {
  display: block;
  margin-bottom: 2px;
  color: var(--dunkel);
}

.hero { padding: 8px 0 8px; }

.label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
}

h1 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.intro {
  max-width: 880px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.78);
}

.form-status {
  display: none;
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
}

.form-status.aktiv { display: block; }

.form-status.erfolg {
  background: linear-gradient(135deg, rgba(75,114,133,0.14) 0%, rgba(60,100,120,0.08) 100%);
  border: 1px solid rgba(75,114,133,0.3);
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.form-status.warn {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  color: var(--warn-text);
}

.form-status.fehler {
  background: var(--err-bg);
  border: 1px solid var(--err-line);
  color: var(--err-text);
}

/* ── Newsletter-Box ──────────────────────────────────────────────────── */
.nl-box {
  display: none;
  margin-top: 20px;
  margin-bottom: 8px;
  padding: 20px 20px 18px;
  background: var(--bg);
  border: 1px solid var(--rand);
  border-radius: 16px;
}
.nl-box.sichtbar { display: block; }
.nl-box-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 6px;
}
.nl-box h2 {
  font-family: 'Manrope', 'Verdana', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dunkel);
  margin: 0 0 6px;
  line-height: 1.3;
}
.nl-box p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}
.nl-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nl-row input[type="email"] {
  flex: 1 1 200px;
  padding: 10px 14px;
  border: 1px solid var(--rand);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Manrope', 'Verdana', sans-serif;
  background: #fff;
  color: var(--dunkel);
  outline: none;
  transition: border-color .2s;
}
.nl-row input[type="email"]:focus { border-color: var(--teal); }
.nl-btn {
  padding: 10px 20px;
  background: var(--teal);
  color: #fcf5e8;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Manrope', 'Verdana', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.nl-btn:hover { opacity: .85; }
.nl-btn:disabled { opacity: .55; cursor: default; }
.nl-hinweis {
  font-size: 11px;
  color: var(--text-soft);
  margin: 10px 0 0;
  line-height: 1.6;
}
.nl-hinweis a { color: var(--teal); text-decoration: none; }
.nl-erfolg {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 10px;
}
.nl-fehler {
  display: none;
  font-size: 12px;
  color: #b94a48;
  margin-top: 8px;
}
/* Honeypot */
.nl-hp { display: none !important; }

.kontakt-form-box {
  margin-bottom: 28px;
  background: var(--bg);
  border-radius: 0 3em;
  padding: 36px 52px;
  border: 1px solid rgba(212,207,196,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

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

.form-feld { margin-bottom: 22px; }

.form-feld.halb {
  grid-column: span 2;
}

.form-feld.voll {
  grid-column: 1 / -1;
}

.form-feld label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.form-feld input,
.form-feld textarea,
.form-feld select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rand);
  padding: 12px 0;
  font-family: 'Manrope', 'Verdana', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--dunkel);
  outline: none;
  resize: none;
  transition: border-color 0.3s;
  border-radius: 0;
  min-height: 44px;
}

.form-feld input:focus,
.form-feld textarea:focus,
.form-feld select:focus { border-bottom-color: var(--dunkel); }

.form-feld.feld-fehler input,
.form-feld.feld-fehler select { border-bottom-color: #b94040; }
.form-feld.feld-fehler textarea { border-color: #b94040; }
.form-feld.feld-fehler label { color: #b94040; }
.form-zustimmung.feld-fehler label { color: #b94040; }

.form-feld input::placeholder,
.form-feld textarea::placeholder { color: rgba(43,43,43,0.28); }

.form-feld select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(43,43,43,0.55) 50%), linear-gradient(135deg, rgba(43,43,43,0.55) 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% - 2px), calc(100% - 7px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.form-feld textarea {
  min-height: 148px;
  padding: 16px 18px;
  border: 1px solid var(--rand);
  border-radius: 18px;
  line-height: 1.72;
  resize: vertical;
  background: var(--bg);
  appearance: none;
  -webkit-appearance: none;
  overflow-y: auto;
  transition: none;
}

.form-upload-bereich {
  margin-top: 20px;
}
.form-upload-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.form-upload-optional {
  font-weight: 400;
  color: var(--text-soft);
  text-transform: none;
  letter-spacing: 0;
}
.form-upload-hinweis {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.6;
}
.form-upload-zone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px dashed var(--rand);
  border-radius: 14px;
  background: rgba(252,245,232,0.5);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.form-upload-zone:hover {
  background: rgba(252,245,232,0.9);
  border-color: var(--akzent);
}
.form-upload-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--akzent);
  opacity: 0.7;
}
.form-upload-icon svg {
  width: 100%;
  height: 100%;
}
.form-upload-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.4;
}
.form-upload-vorschau {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.form-upload-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(60,100,120,0.08);
  border: 1px solid rgba(60,100,120,0.18);
  border-radius: 999px;
  font-size: 11px;
  color: var(--akzent);
  font-weight: 600;
}
.form-upload-chip-remove {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  color: var(--akzent);
  opacity: 0.6;
  font-size: 14px;
}
.form-upload-chip-remove:hover { opacity: 1; }
.form-upload-fehler {
  margin-top: 6px;
  font-size: 11px;
  color: #8b3a2e;
  line-height: 1.5;
}

.form-zustimmung {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-zustimmung input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #3c6478;
  flex: 0 0 auto;
}

.form-zustimmung label {
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-soft);
  text-transform: none;
  letter-spacing: 0;
}

.form-zustimmung a {
  color: var(--dunkel);
  text-decoration: none;
  text-underline-offset: 0.16em;
}
.form-zustimmung a:hover,
.form-zustimmung a:focus-visible {
  text-decoration: underline;
}

.form-versteckt {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-senden-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.form-senden-btn {
  appearance: none;
  -webkit-appearance: none;
  min-width: 200px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s, color 0.3s, border-color 0.3s;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-fill-color: var(--bg);
}

.form-senden-btn:hover {
  background: rgba(252,245,232,0.96);
  transform: scale(1.03);
  border: 1px solid var(--rand);
  color: var(--dunkel);
  -webkit-text-fill-color: var(--dunkel);
}

.form-senden-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--bg);
  border-right: 2px solid var(--bg);
  transform: rotate(45deg);
  pointer-events: none;
  flex: 0 0 auto;
}

.form-senden-btn:focus,
.form-senden-btn:focus-visible {
  outline: none;
}

.form-hinweis {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 52ch;
}

.form-pflicht {
  margin: 0 0 18px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.6;
}

.wa-section {
  margin-bottom: 40px;
  padding: 40px 52px;
  background: var(--bg);
  border-radius: 0 3em;
  border: 1px solid rgba(212,207,196,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.wa-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}

.wa-icon-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wa-icon-mark svg {
  width: 30px;
  height: 30px;
  display: block;
}

.wa-heading {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.wa-heading em {
  display: block;
  color: rgba(43,43,43,0.36);
  font-style: normal;
}

.wa-intro {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(43,43,43,0.78);
  margin: 0 0 30px;
}

.wa-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.wa-step {
  background: #f8f1e4;
  border: 1px solid rgba(212,207,196,0.9);
  border-radius: 18px;
  padding: 20px 22px;
}

.wa-step-nr {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.wa-step h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wa-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(43,43,43,0.75);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.wa-btn:hover {
  background: #128C7E;
  color: #ffffff;
  border-color: #128C7E;
  transform: scale(1.02);
}

.wa-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.wa-wallet {
  margin-top: 14px;
}

/* ── Termin-Teaser ───────────────────────────────────────────────────────── */
.termin-teaser {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 32px;
  align-items: center;
  margin-bottom: 28px;
  padding: 32px 40px;
  background: var(--bg);
  border: 1px solid rgba(212,207,196,0.8);
  border-radius: 0 3em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.termin-teaser-icon-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(60,100,120,0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
  margin-top: 4px;
}
.termin-teaser-icon-mark svg {
  width: 26px; height: 26px; display: block;
}

.termin-teaser-body {}

.termin-teaser-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.termin-teaser-heading {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.termin-teaser-heading em {
  color: rgba(43,43,43,0.36);
  font-style: normal;
}

.termin-teaser-text {
  font-size: 13px; line-height: 1.7;
  color: rgba(43,43,43,0.72);
  margin: 0 0 18px;
  max-width: 560px;
}

.termin-teaser-zeiten {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.termin-teaser-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(60,100,120,0.25);
  border-radius: 999px;
  background: rgba(60,100,120,0.06);
  font-size: 11px; font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.termin-teaser-chip svg {
  width: 12px; height: 12px; display: block; flex-shrink: 0;
}

.termin-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--teal);
  color: var(--bg);
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.termin-teaser-btn:hover {
  background: transparent;
  color: var(--teal);
}
.termin-teaser-btn svg {
  width: 15px; height: 15px; display: block; flex-shrink: 0;
}

@media (max-width: 620px) {
  .termin-teaser {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .termin-teaser-icon-mark { margin-top: 0; }
  .termin-teaser-btn { width: 100%; justify-content: center; }
}

.wa-wallet-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.wa-wallet-title {
  margin: 0;
}

.wa-wallet-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.wa-wallet-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  padding: 2px 0;
  touch-action: manipulation;
}

.wa-wallet-link img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
}

.wa-wallet-link--google img {
  height: 35px;
}

.wa-hinweis {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

footer {
  margin-top: 24px;
  padding: 42px 56px;
  padding-right: 148px;
  background: var(--dunkel);
  color: rgba(252,245,232,0.34);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.45;
}
footer a { color: inherit; text-decoration: none; }

footer [data-privacy-settings-link] {
  display: inline-flex;
  align-items: center;
  color: inherit !important;
  text-decoration: none !important;
}

.chat-float {
  display: none;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 24px;
  }

  .navbar-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .navbar-wordmark-klein { font-size: 9.5px; }

  h1 { font-size: clamp(32px, 9vw, 46px); }

  .kontakt-form-box {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .wa-section {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .wa-wallet-links {
    gap: 10px 12px;
  }

  .wa-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }
  .form-feld.halb,
  .form-feld.voll { grid-column: 1 / -1; }

  .form-senden-row {
    justify-content: flex-start;
  }

  .form-senden-btn {
    width: 100%;
    min-width: 0;
  }

  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 520px) {
  .wrap { width: min(1120px, calc(100vw - 48px)); }
  h1 { font-size: clamp(26px, 8vw, 34px); }
  .hero { padding: 48px 0 28px; }
  .kontakt-form-box { padding: 20px 16px; }
  .wa-section { padding: 20px 16px; }
  .wa-wallet {
    margin-top: 12px;
  }
  .wa-wallet-row {
    align-items: flex-start;
    gap: 12px;
  }
  .wa-wallet-links {
    gap: 10px;
  }
  .wa-wallet-link img { height: 36px; }
  .wa-wallet-link--google img { height: 32px; }
  footer { padding-left: 16px; padding-right: 16px; }
}
