/* ============================================================
   klaviertransport-in-berlin.de — Shared Stylesheet
   Roboto + Libre Baskerville · Primary #006D8F · Mobile-first
   Matches original Elementor design tokens exactly
   ============================================================ */

/* Fonts loaded non-blocking via <link> in HTML */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Focus & Touch ── */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
button, .btn, a { touch-action: manipulation; }
body { -webkit-tap-highlight-color: transparent; }

/* ── Variables (Elementor tokens) ── */
:root {
  --blue:       #006D8F;
  --blue-dark:  #0193C0;
  --blue-light: #e8f4f8;
  --text:       #333;
  --text-head:  #016d8f;
  --gray-50:    #f8f8f8;
  --gray-100:   #f0f0f0;
  --gray-200:   #e0e0e0;
  --gray-400:   #9ca3af;
  --gray-600:   #555;
  --gray-700:   #444;
  --gray-800:   #333;
  --topbar-bg:  #FBFEF9;
  --star:       #FFA000;
  --radius:     8px;
  --radius-pill: 1000px;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 6px 28px rgba(0,0,0,.12);
  --max-w:      1140px;
}

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.skip-link:focus-visible {
  position:fixed; top:8px; left:8px; z-index:9999;
  width:auto; height:auto; overflow:visible; clip:auto; white-space:normal;
  background:var(--blue); color:#fff; padding:10px 18px;
  border-radius:var(--radius); font-weight:700; font-size:1rem;
  outline:3px solid #fff; outline-offset:2px;
}

/* ── Top-Bar ── */
.topbar {
  background: var(--topbar-bg);
  color: var(--text);
  font-size: .88rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  justify-content: flex-start;
}
.topbar a { color: var(--text); font-weight: 500; }
.topbar a:hover { color: var(--blue); }
.topbar-contact { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.topbar-contact a { display: flex; align-items: center; gap: .35rem; }
.topbar-cta {
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .83rem;
  white-space: nowrap;
  display: flex; align-items: center; gap: .35rem;
}
.topbar-cta:hover { background: var(--blue-dark); }

/* ── Header / Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}
.logo {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.logo span { color: var(--text); }

nav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
nav a {
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: var(--radius-pill);
  transition: background .15s, color .15s;
}
nav a:hover { background: var(--blue-light); color: var(--blue); }

.btn-nav {
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 700;
  padding: .5rem 1.25rem !important;
  border-radius: var(--radius-pill) !important;
}
.btn-nav:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .3rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s, transform .1s;
  border: none;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-cta { background: var(--blue); color: #fff; }
.btn-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; font-weight: 700; }

/* ── Hero ── */
.hero {
  background: #000;
  color: #fff;
  padding: 4rem 0 3.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero-bg.png') center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0) 100%);
  opacity: .8;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 740px; }

.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-sub { font-size: 1rem; opacity: .9; margin-bottom: 1.75rem; color: #fff; }

.hero-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-icon-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  opacity: .9;
  color: #fff;
}
.hero-icon-item svg { width: 1.3rem; height: 1.3rem; flex-shrink: 0; }

.rating-bar {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  margin-top: 1.5rem;
  color: #fff;
}
.stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; }

/* ── Sections ── */
section { padding: 2.5rem 0; }
.section-alt { background: var(--gray-50); }

.section-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem) !important;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: .75rem;
  line-height: 1.3;
  border-bottom: 2px solid var(--blue);
  padding-bottom: .5rem;
  display: block;
}
.section-lead { color: var(--gray-600); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.text-center .section-title { border-bottom: none; padding-bottom: 0; }

/* CTA wrapper (replaces inline style) */
.section-cta { text-align: center; margin-top: 1.75rem; }

/* Checklist spacing before a button */
.checklist-mb { margin-bottom: 1rem; }

h2, h3, h4 { color: var(--text-head); }

/* ── USP-Grid ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.usp-grid > * { min-width: 0; }
.usp-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.usp-card .icon {
  width: 2.6rem; height: 2.6rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
}
.usp-card .icon svg { width: 1.4rem; height: 1.4rem; color: var(--blue); }
.usp-card h3 { font-size: .97rem; font-weight: 700; margin-bottom: .4rem; color: var(--text-head); }
.usp-card p { font-size: .88rem; color: var(--gray-600); }

/* ── Pricing Table ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table thead th { background: var(--blue); color: #fff; padding: .85rem 1rem; text-align: left; font-weight: 600; }
.price-table tbody tr:nth-child(even) { background: var(--gray-50); }
.price-table tbody tr:hover { background: var(--blue-light); }
.price-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.price-tag { font-weight: 700; color: var(--blue); font-variant-numeric: tabular-nums; }
.price-note { background: #e8f4f8; border: 1px solid #b3d9e8; border-radius: var(--radius); padding: .85rem 1rem; font-size: .9rem; margin-top: 1.25rem; color: #014f66; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.testimonials-grid > * { min-width: 0; }
.testi-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .75rem;
}
.testi-header { display: flex; align-items: center; gap: .85rem; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-light); }
.testi-name { font-weight: 700; font-size: .93rem; color: var(--text); }
.testi-stars { color: var(--star); font-size: .9rem; }
.testi-sub { font-size: .78rem; color: var(--gray-600); }
.testi-text { font-size: .9rem; color: var(--gray-600); font-style: italic; line-height: 1.6; }

/* ── Inquiries ── */
.inquiries-list { display: flex; flex-direction: row; gap: .75rem; max-width: 100%; margin: 1.75rem auto 0; }
.inquiry-item { display: flex; align-items: center; gap: .75rem; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: .65rem 1rem; font-size: .88rem; flex: 1; }
.inquiry-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.inquiry-time { color: var(--gray-400); font-size: .8rem; margin-left: auto; }

/* ── Trust-Trio ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.trust-grid > * { min-width: 0; }
.trust-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.trust-card .badge {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .75rem; font-weight: 700; padding: .25rem .75rem;
  border-radius: var(--radius-pill); margin-bottom: .85rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.trust-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; color: var(--text-head); }
.trust-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1rem; }

/* ── CTA Section ── */
.cta-section { background: var(--blue); color: #fff; padding: 4rem 0; text-align: center; }
.cta-eyebrow { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; opacity: .65; margin: 0 0 .75rem; }
.cta-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800; margin-bottom: .6rem; color: #fff; border: none; padding: 0; }
.cta-lead { opacity: .85; font-size: 1rem; max-width: 520px; margin: 0 auto 1.75rem; }
.cta-reasons { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-bottom: 2.25rem; }
.cta-reason { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-pill); padding: .4rem 1rem; font-size: .84rem; font-weight: 500; }
.cta-section .btn { background: #fff; color: var(--blue); font-weight: 700; }
.cta-section .btn:hover { background: #f0f0f0; }

/* ── Guide Sections ── */
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.guide-grid > * { min-width: 0; }
.guide-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: auto; display: block; }
.guide-grid > div:has(> img) { display: flex; align-items: center; justify-content: center; align-self: stretch; }
.guide-grid > div:has(> img) img { width: 100%; height: 100%; object-fit: cover; max-height: 420px; }
.guide-section h2 { font-size: clamp(1.2rem, 2.8vw, 1.6rem); font-weight: 700; margin-bottom: .75rem; color: var(--text-head); border-bottom: 2px solid var(--blue); padding-bottom: .4rem; display: block; }
.guide-section h3,
#fluegeltransport-berlin h3,
#pianotransport-berlin h3 { font-size: 1rem; font-weight: 700; margin: 2.25rem 0 .5rem; color: var(--text-head); }
.guide-section h3:first-child { margin-top: .5rem; }
.guide-section p { color: var(--gray-600); margin-bottom: .75rem; font-size: .93rem; }
.guide-section ul:not(.checklist) { list-style: disc; padding-left: 1.4rem; color: var(--gray-600); font-size: .93rem; }
.guide-section ul:not(.checklist) li { margin-bottom: .3rem; }
/* Checklists in guide sections must be flush with headings (no extra indent) */
.guide-section .checklist { padding-left: 0; color: var(--gray-600); font-size: .93rem; }
/* Inline-grid helpers (preparation & care sections) */
.content-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.content-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }

blockquote {
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--gray-700);
  font-size: .9rem;
}
blockquote cite { display: block; margin-top: .4rem; font-style: normal; font-weight: 600; font-size: .82rem; color: var(--blue); }

/* ── Districts Table ── */
.districts-table { width: 100%; border-collapse: collapse; font-size: .9rem; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.districts-table thead th { background: var(--gray-800); color: #fff; padding: .8rem 1rem; text-align: left; font-weight: 600; }
.districts-table tbody tr:nth-child(even) { background: var(--gray-50); }
.districts-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.districts-table td:first-child { font-weight: 600; color: var(--text-head); }

/* ── Scenarios ── */
.scenarios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.scenarios-grid > * { min-width: 0; }
.scenario-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 0; box-shadow: var(--shadow); overflow: hidden; }
.scenario-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.scenario-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.scenario-card .tag { display: inline-block; background: var(--blue); color: #fff; font-size: .73rem; font-weight: 700; padding: .2rem .6rem; border-radius: 4px; margin-bottom: .65rem; text-transform: uppercase; }
.scenario-card h3 { font-size: .93rem; font-weight: 700; margin-bottom: .45rem; color: var(--text-head); }
.scenario-card p { font-size: .86rem; color: var(--gray-600); margin-bottom: .3rem; }
.scenario-price { font-weight: 700; color: var(--blue); margin-top: .5rem; font-size: .93rem; font-variant-numeric: tabular-nums; }

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: .45rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .91rem; color: var(--gray-700); }
.checklist li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .65rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: #fff; border: none;
  padding: 1rem 1.25rem; font-size: .93rem; font-weight: 600; color: var(--gray-800);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background .15s;
}
.faq-q:hover { background: var(--blue-light); }
.faq-q[aria-expanded="true"] { background: var(--blue-light); color: var(--blue); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--blue); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: grid-template-rows .3s ease, padding .3s ease;
}
.faq-a.open {
  grid-template-rows: 1fr;
  padding: .9rem 1.25rem 1.1rem;
}
.faq-a p { min-height: 0; overflow: hidden; }
.faq-a p { font-size: .9rem; color: var(--gray-600); }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem; }
.services-grid a {
  display: flex; align-items: center; gap: .45rem;
  color: var(--blue); font-size: .87rem; font-weight: 500;
  padding: .45rem .75rem; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: #fff; transition: background .15s, border-color .15s;
}
.services-grid a::before { content: '›'; flex-shrink: 0; font-size: 1.1rem; }
.services-grid a:hover { background: var(--blue-light); border-color: var(--blue); }

/* ── Contact Box ── */
.contact-box {
  background: var(--blue); color: #fff;
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: space-between;
}
.contact-box h3 { font-size: 1.15rem; font-weight: 700; color: #fff; }
.contact-box p { opacity: .9; font-size: .9rem; margin-top: .2rem; }
.contact-box .contact-links { display: flex; flex-direction: column; gap: .45rem; }
.contact-box .contact-links a { color: #fff; font-weight: 600; }
.contact-box .contact-links a:hover { text-decoration: underline; }
.contact-box .btn { background: #fff; color: var(--blue); font-weight: 700; }
.contact-box .btn:hover { background: #f0f0f0; }

/* ── Footer ── */
footer { background: #1f2427; color: #fff; padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: center; margin-bottom: 2.5rem; }
/* Brand */
.footer-logo { font-size: 1rem; font-weight: 700; color: #fff; display: block; margin-bottom: .45rem; }
.footer-logo span { color: var(--blue-dark); }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0 0 1.2rem; line-height: 1.55; font-weight: 400; }
.footer-contacts { display: flex; flex-direction: column; gap: .55rem; }
.footer-contacts a { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.65); font-size: .84rem; transition: color .15s; text-decoration: none; }
.footer-contacts a:hover { color: #fff; }
.footer-contacts svg { flex-shrink: 0; opacity: .5; }
/* Nav */
.footer-nav { display: flex; flex-direction: column; gap: 0; }
.footer-nav-heading { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: .9rem; display: block; }
.footer-nav a { color: rgba(255,255,255,.6); font-size: .86rem; text-decoration: none; transition: color .15s; padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.06); display: block; }
.footer-nav a:last-child { border-bottom: none; }
.footer-nav a:hover { color: #fff; }
/* CTA Box */
.footer-cta-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.footer-cta-icon { display: flex; justify-content: center; align-items: center; width: 52px; height: 52px; background: rgba(255,255,255,.1); border-radius: 50%; flex-shrink: 0; color: #fff; }
.footer-cta-text { flex: 1; }
.footer-cta-label { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 .2rem; }
.footer-cta-sub { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; line-height: 1.4; }
.footer-cta-btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; font-size: .87rem; padding: .7rem 1.6rem; border-radius: var(--radius-pill); text-decoration: none; transition: background .15s, transform .15s; flex-shrink: 0; white-space: nowrap; }
.footer-cta-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; font-size: .77rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.footer-bottom a:hover { color: #fff; }

/* ── Multi-step Form ── */
.progress-bar-wrap { background: var(--gray-200); border-radius: var(--radius-pill); height: 5px; overflow: hidden; margin-bottom: .5rem; }
.progress-bar { height: 100%; background: var(--blue); border-radius: var(--radius-pill); transition: width .4s ease; }
.progress-label { font-size: .83rem; color: var(--gray-600); margin-bottom: 1.5rem; font-weight: 500; }

.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-lg); max-width: 640px; margin: 0 auto; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.25rem; color: rgb(88,88,88); border: none; padding: 0; display: block; text-align: center; font-family: 'Roboto', Arial, sans-serif; }

.field-group { margin-bottom: 1.1rem; }
.field-group label { display: block; font-size: .88rem; font-weight: 500; color: var(--gray-700); margin-bottom: .25rem; font-family: 'Roboto', Arial, sans-serif; }

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group input[type="date"],
.field-group input[type="time"],
.field-group select,
.field-group textarea {
  width: 100%;
  padding: .6rem .5rem;
  border: none;
  border-bottom: 1px solid rgb(88,88,88);
  border-radius: 0;
  font-size: .93rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--gray-800);
  background: #F8F8F8;
  transition: border-color .15s;
  -webkit-appearance: none;
  margin-top: 8px;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-bottom-color: var(--blue); background: #fff; }
.field-group input.error,
.field-group select.error,
.field-group textarea.error { border-bottom-color: #ef4444; }
.field-error { color: #ef4444; font-size: .78rem; margin-top: .25rem; display: none; }
.field-error.visible { display: block; }
.field-group textarea { resize: vertical; min-height: 90px; }

.addr-row { display: grid; grid-template-columns: 2fr 1fr; gap: .75rem; }
.addr-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .75rem; }

/* Radio cards */
.radio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .5rem; }
.radio-card { position: relative; }
.radio-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio-card label {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: .7rem .4rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-size: .87rem; font-weight: 500;
  cursor: pointer; transition: border-color .15s, background .15s, color .15s;
  color: var(--gray-700); background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}
.radio-card input[type="radio"]:checked + label { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.radio-card label:hover { border-color: var(--blue); }
.radio-card input[type="radio"]:focus-visible + label { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: var(--radius); }

/* Checkbox */
.checkbox-group { display: flex; align-items: flex-start; gap: .65rem; margin-top: .5rem; }
.checkbox-group input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 2em; height: 2em; background: #fff;
  border: 0.1em solid #000; border-radius: 0;
  display: grid; place-content: center;
  flex-shrink: 0; cursor: pointer; margin: 0;
  accent-color: var(--blue);
}
.checkbox-group input[type="checkbox"]::before {
  content: ""; width: 1em; height: 1em;
  transform: scale(0); transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--blue);
}
.checkbox-group input[type="checkbox"]:checked::before { transform: scale(1); }
.checkbox-group label { font-size: .87rem; color: var(--gray-600); cursor: pointer; font-family: 'Roboto', Arial, sans-serif; line-height: 2; }
.checkbox-group label a { color: var(--blue); text-decoration: underline; }

/* Form navigation buttons - match WP design exactly */
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.btn-back {
  background: #DDDDDD; color: #000; font-weight: 400;
  padding: .65rem 1.25rem; border-radius: 0; border: none;
  cursor: pointer; font-size: .93rem; width: 100%;
  font-family: 'Roboto', Arial, sans-serif; text-transform: uppercase;
  transition: background .15s;
}
.btn-back:hover { background: #ccc; }
.btn-next {
  background: #DDDDDD; color: #000; font-weight: 400;
  padding: .65rem 1.25rem; border-radius: 0; border: none;
  cursor: pointer; font-size: .93rem; width: 100%;
  font-family: 'Roboto', Arial, sans-serif; text-transform: uppercase;
  transition: background .15s;
}
.btn-next:hover { background: #ccc; }
.btn-submit {
  background: #2F6B8D; color: #fff; font-weight: 400;
  padding: .65rem 1.25rem; border-radius: 0; border: none;
  cursor: pointer; font-size: .93rem; width: 100%;
  font-family: 'Roboto', Arial, sans-serif; text-transform: uppercase;
  transition: background .15s;
}
.btn-submit:hover { background: var(--blue); }

.ssl-note { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--gray-400); margin-top: .75rem; justify-content: center; }

/* Honeypot */
.hp-field { display: none !important; }

/* ── Alert / Error Box ── */
.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-left: 4px solid #ef4444;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .93rem;
  color: #991b1b;
  line-height: 1.5;
}
.alert-error a { color: #991b1b; font-weight: 700; text-decoration: underline; }

/* ── Danke Page ── */
.danke-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.25rem; }
.danke-card { max-width: 520px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 2.5rem 2rem; box-shadow: var(--shadow-lg); }
.danke-icon { width: 64px; height: 64px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.danke-icon svg { width: 2rem; height: 2rem; color: #16a34a; }
.danke-card h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: .7rem; color: var(--text-head); }
.danke-card p { color: var(--gray-600); margin-bottom: 1.5rem; }

/* ── Legal Pages ── */
.legal-content { max-width: 780px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.legal-content h1 { font-size: 1.85rem; font-weight: 700; margin-bottom: 2rem; color: var(--text-head); }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; margin: 2rem 0 .6rem; color: var(--text-head); border-bottom: none; padding: 0; display: block; }
.legal-content p { color: var(--gray-600); margin-bottom: .8rem; font-size: .93rem; }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  nav { position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100vh; background: #fff; flex-direction: column; align-items: flex-start; padding: 5rem 1.5rem 2rem; box-shadow: -4px 0 24px rgba(0,0,0,.15); transition: right .3s ease; z-index: 200; gap: .25rem; overscroll-behavior: contain; overflow-y: auto; }
  nav.open { right: 0; }
  nav a { font-size: .97rem; padding: .6rem .5rem; width: 100%; border-radius: 0; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 199; }
  .nav-overlay.show { display: block; }
  .hero { min-height: auto; padding: 3rem 0 2.5rem; }
  .hero .container { max-width: 100%; }
  .guide-grid { grid-template-columns: 1fr; }
  .addr-row { grid-template-columns: 1fr; }
  .addr-row-3 { grid-template-columns: 1fr 1fr; }
  .contact-box { flex-direction: column; }
  .topbar .container { flex-direction: column; gap: .5rem; align-items: flex-start; }
  .price-table, .districts-table { font-size: .8rem; }
  .form-card { padding: 1.5rem 1rem; }
  section { padding: 2.5rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cta-box { flex-wrap: wrap; gap: 1rem; }
  .footer-cta-btn { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 480px) {
  .addr-row-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
}
