@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg:       #FFFFFF;
  --bg2:      #F4F6FA;
  --bg3:      #EAECF2;
  --dark:     #1A1F3C;
  --navy:     #252B50;
  --mid:      #4A5068;
  --muted:    #8B90A8;
  --border:   #E2E5F0;
  --accent:   #4B55A0;
  --accent2:  #3A4490;
  --accent-l: #EEF0FA;
  --white:    #FFFFFF;
  --green:    #25D366;
  --red:      #C0392B;
  --font:     'Inter', sans-serif;
  --nav-h:    68px;
  --radius:   10px;
  --radius-sm:6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,31,60,0.1);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 40px; width: auto; }
.logo-fallback { font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; color: var(--accent); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--mid); padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-links a:hover { color: var(--dark); background: var(--bg2); }
.nav-links a.active { color: var(--accent); font-weight: 600; border-bottom: 2px solid var(--accent); border-radius: 0; padding-bottom: 6px; }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 10px 20px !important; border-radius: var(--radius) !important; font-weight: 600 !important; border-bottom: none !important; box-shadow: 0 2px 10px rgba(75,85,160,0.3); }
.nav-cta:hover { background: var(--accent2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
.mobile-menu { display: none; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 4px 16px rgba(26,31,60,0.08); }
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 12px 20px 20px; display: flex; flex-direction: column; }
.mobile-menu a { display: block; padding: 12px 8px; font-size: 0.9rem; font-weight: 500; color: var(--mid); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--accent); }

/* ── HERO ── */
.hero { padding-top: var(--nav-h); min-height: 88vh; display: flex; align-items: center; background: var(--navy); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero-content { padding: 80px 28px 90px; max-width: 1140px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); color: var(--mid); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 28px; box-shadow: 0 1px 4px rgba(26,31,60,0.06); }
.hero-pill::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: var(--dark); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: var(--mid); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.hstat { background: rgba(255,255,255,0.85); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 22px; backdrop-filter: blur(8px); }
.hstat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.hstat span { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 4px; display: block; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); padding: 13px 26px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: all 0.2s; box-shadow: 0 2px 12px rgba(75,85,160,0.3); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(75,85,160,0.4); }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); padding: 13px 24px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.btn-wa:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); color: var(--mid); padding: 11px 22px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: all 0.2s; background: var(--white); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section.alt { background: var(--bg2); }
.sec-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.sec-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.sec-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px; }
.sec-sub { font-size: 0.97rem; color: var(--mid); max-width: 520px; line-height: 1.8; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; transition: all 0.2s; box-shadow: 0 1px 4px rgba(26,31,60,0.04); }
.card:hover { border-color: var(--accent); box-shadow: 0 4px 24px rgba(75,85,160,0.12); transform: translateY(-2px); }
.card-icon { width: 38px; height: 38px; margin-bottom: 18px; color: var(--accent); }
.card h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.card p { font-size: 0.875rem; color: var(--mid); line-height: 1.75; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; box-shadow: 0 1px 4px rgba(26,31,60,0.04); }
.step-num { width: 44px; height: 44px; background: var(--accent-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--mid); line-height: 1.75; }

/* ── TAGS ── */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 7px 16px; font-size: 0.8rem; font-weight: 500; color: var(--mid); transition: all 0.2s; }
.tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-l); }

/* ── CTA ── */
.cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #3038A0 100%); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { display: inline-block; background: var(--white); color: var(--accent); padding: 13px 26px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 700; transition: all 0.2s; }
.btn-white:hover { background: var(--bg2); }
.btn-white-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); padding: 11px 22px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.btn-white-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

/* ── PAGE HEADER ── */
.page-hdr { padding: calc(var(--nav-h) + 52px) 0 52px; background: linear-gradient(150deg, #F7F8FD 0%, #ECEFFD 100%); border-bottom: 1px solid var(--border); }
.page-hdr h1 { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; color: var(--dark); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 14px; }
.page-hdr p { font-size: 1rem; color: var(--mid); max-width: 500px; line-height: 1.8; }

/* ── ÜBER UNS ── */
.ueber-grid { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; margin-top: 56px; }
.ueber-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%; border-radius: 16px; box-shadow: 0 8px 40px rgba(26,31,60,0.12); }
@media (max-width: 900px) {
  .ueber-img { aspect-ratio: 4/3; object-position: center 30%; }
}
@media (max-width: 580px) {
  .ueber-img { aspect-ratio: 1/1; object-position: center 25%; border-radius: 12px; }
}
.ueber-text h2 { font-size: clamp(2rem,3.5vw,2.6rem); font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.15; }
.ueber-name { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.ueber-text p { font-size: 0.95rem; color: var(--mid); line-height: 1.85; margin-bottom: 16px; }
.ueber-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 28px 0 32px; }
.ustat { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.ustat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.ustat span { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ── KONTAKT ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; margin-top: 52px; }
.k-info h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.k-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.k-icon-wrap { width: 38px; height: 38px; background: var(--accent-l); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.k-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 3px; }
.k-val { font-size: 0.92rem; font-weight: 600; color: var(--dark); }
.k-val a { color: var(--dark); transition: color 0.2s; }
.k-val a:hover { color: var(--accent); }
.k-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

/* ── FORM ── */
.form-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-title-main { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.01em; }
.req-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; }
.simple-form .frow { margin-bottom: 18px; }
.simple-form label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--mid); margin-bottom: 7px; }
.simple-form input,
.simple-form select,
.simple-form textarea { width: 100%; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font); font-size: 0.92rem; color: var(--dark); transition: all 0.2s; -webkit-appearance: none; appearance: none; box-shadow: 0 1px 3px rgba(26,31,60,0.04); }
.simple-form input:focus, .simple-form select:focus, .simple-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(75,85,160,0.1); }
.simple-form input.error { border-color: var(--red); }
.simple-form input::placeholder, .simple-form textarea::placeholder { color: #B8BDD4; }
.simple-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B90A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; background-color: var(--white); }
.simple-form select option { background: var(--white); }
.simple-form textarea { resize: vertical; min-height: 85px; }
.simple-form .err { display: none; font-size: 0.72rem; color: var(--red); margin-top: 4px; }
.simple-form .err.show { display: block; }
.simple-form .btn-send { width: 100%; background: var(--accent); color: var(--white); border: none; padding: 14px; border-radius: var(--radius); font-family: var(--font); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 6px; box-shadow: 0 2px 12px rgba(75,85,160,0.3); }
.simple-form .btn-send:hover:not(:disabled) { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(75,85,160,0.4); }
.simple-form .btn-send:disabled { opacity: 0.55; cursor: not-allowed; }
.f-success { display: none; text-align: center; padding: 48px 20px; }
.f-success .ico { margin: 0 auto 16px; width: 52px; height: 52px; background: var(--accent-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.f-success h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.f-success p { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.f-error-msg { display: none; margin-top: 12px; padding: 12px 14px; background: #FFF0EE; border: 1px solid #FACCCC; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--red); }
.f-error-msg a { color: var(--accent); font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 16px; line-height: 1.8; max-width: 230px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 6px; }
.footer-col .tel-link { color: rgba(255,255,255,0.65); font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); line-height: 1.7; }
.footer-seo-text { font-size: 0.65rem !important; color: rgba(255,255,255,0.08) !important; margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ueber-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .ueber-img { aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .cta-inner { flex-direction: column; }
}
@media (max-width: 580px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 40px 24px 48px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .ueber-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 8px; }
  .hstat { padding: 10px 16px; }
  .hstat strong { font-size: 1.3rem; }
}

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 68px;
  height: 68px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}
.wa-float svg { width: 34px; height: 34px; }
.wa-float:hover {
  background: #1ebe5c;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6), 0 4px 14px rgba(0,0,0,0.25);
}
@media (max-width: 580px) {
  .wa-float { bottom: 20px; right: 20px; width: 62px; height: 62px; }
  .wa-float svg { width: 30px; height: 30px; }
}

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 0; font-size: 0.78rem; color: var(--muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.97rem; color: var(--dark); transition: background 0.2s; gap: 16px; }
.faq-q:hover { background: var(--bg2); }
.faq-icon { width: 24px; height: 24px; background: var(--accent-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: 1rem; font-weight: 700; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--mid); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-item.open .faq-a { display: block; }

/* ── REGION GRID ── */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 32px; }
.region-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; transition: all 0.2s; display: block; }
.region-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(75,85,160,0.1); transform: translateY(-1px); }
.region-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.region-card p { font-size: 0.78rem; color: var(--muted); }

/* ── TRUST BADGES ── */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.trust-badge { display: flex; align-items: center; gap: 8px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 16px; font-size: 0.82rem; font-weight: 600; color: var(--mid); }
.trust-badge svg { color: var(--accent); flex-shrink: 0; }

/* ── PROCESS STEPS HORIZONTAL ── */
.process-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 44px; position: relative; }
.process-row::before { content:''; position:absolute; top:22px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,var(--accent),var(--accent)); opacity:0.15; }
.proc-step { text-align: center; padding: 0 16px; }
.proc-num { width: 44px; height: 44px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; margin: 0 auto 16px; position: relative; z-index: 1; }
.proc-step h3 { font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.proc-step p { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }

@media(max-width:680px){
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display:none; }
}

/* ════════════════════════════════════════════════════════════
   FORMULAR – Erweitert (Pflicht + Optional + Mobile-first)
   ════════════════════════════════════════════════════════════ */

/* Mobile-first: form inputs need to be 16px to prevent iOS auto-zoom on focus */
.simple-form input,
.simple-form select,
.simple-form textarea {
  font-size: 16px !important;
  min-height: 48px;
  padding: 12px 14px;
}
.simple-form textarea {
  min-height: 96px;
}
.simple-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.simple-form label .opt {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.78rem;
}

/* 2-Column row (becomes 1-column on mobile) */
.simple-form .frow-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.simple-form .frow-2col .frow {
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  .simple-form .frow-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Aufklappbarer Bereich für optionale Felder */
.simple-form .extras-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg2);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s;
  margin: 8px 0 18px;
  text-align: left;
  min-height: 52px;
}
.simple-form .extras-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-l);
}
.simple-form .extras-toggle-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.simple-form .extras-toggle-left svg {
  flex-shrink: 0;
  color: var(--accent);
}
.simple-form .extras-hint {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.8rem;
}
.simple-form .extras-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.simple-form .extras-toggle.open .extras-chevron {
  transform: rotate(180deg);
}
.simple-form .extras-panel {
  display: none;
  padding: 6px 2px 10px;
  border-left: 3px solid var(--accent-l);
  margin-left: 2px;
  padding-left: 16px;
}
.simple-form .extras-panel.open {
  display: block;
  animation: extras-slide 0.25s ease;
}
@keyframes extras-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .simple-form .extras-hint {
    display: block;
    font-size: 0.72rem;
    margin-top: 2px;
  }
  .simple-form .extras-panel {
    padding-left: 12px;
  }
}

/* Privacy note unter dem Formular */
.simple-form .form-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 4px 2px 14px;
}

/* Bessere Submit-Button auf Mobile */
.simple-form .btn-send {
  font-size: 1rem;
  min-height: 54px;
  padding: 16px;
}

/* Eingabefelder mit Fehler */
.simple-form input.error,
.simple-form select.error {
  border-color: var(--red);
  background: #FFF7F6;
}

/* ════════════════════════════════════════════════════════════
   IMAGE SHOWCASE — 2-Spalten Bild + Text
   ════════════════════════════════════════════════════════════ */
.showcase-section {
  padding: 80px 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase-grid.reverse {
  /* swap order via direction */
}
.showcase-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,31,60,0.12);
  aspect-ratio: 4/3;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-text h2 {
  margin: 0;
}
@media (max-width: 820px) {
  .showcase-section { padding: 56px 0; }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase-grid.reverse .showcase-img {
    order: -1;  /* Bild oben auf Mobile, immer */
  }
  .showcase-grid .showcase-img {
    order: -1;
  }
}

/* Region Banner (full-width image with overlay) */
@media (max-width: 600px) {
  .region-banner {
    height: 300px !important;
  }
  .region-banner h2 {
    font-size: 1.5rem !important;
  }
}
