/* ============================================================
   SMQTEC – main.css
   All site styles. Loaded via functions.php wp_enqueue_style.
   ============================================================ */

/* Google Fonts are enqueued in functions.php */

/* ── TOKENS ── */
:root {
  --white:        #ffffff;
  --gray-50:      #f7f6f3;
  --gray-100:     #eeede8;
  --gray-200:     #dddcd5;
  --gray-400:     #9b9a94;
  --navy:         #38485F;
  --navy-dark:    #28364A;
  --navy-darker:  #1c2736;
  --accent:       #D95D5B;
  --accent-dark:  #bf4a48;
  --accent-light: #e87977;
  --text-primary:   #1e2b38;
  --text-secondary: #4a5668;
  --text-muted:     #7a8898;
  --border:       #e0dfd8;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: var(--navy-darker);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 15px; font-weight: 300; letter-spacing: 0.08em;
  color: white; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 6px 14px; display: inline-block;
  font-variation-settings: 'slnt' 0,'wdth' 100,'GRAD' 0,'XOPQ' 96,'XTRA' 468,'YOPQ' 79,'YTAS' 750,'YTDE' -203,'YTFI' 738,'YTLC' 514,'YTUC' 712;
  transition: border-color 0.2s;
}
.nav-logo:hover { border-color: rgba(255,255,255,0.7); }

/* WP nav menu overrides */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  list-style: none; display: flex; gap: 28px; align-items: center;
  margin: 0; padding: 0;
}
.main-navigation ul li a {
  text-decoration: none; color: rgba(255,255,255,0.65);
  font-size: 14px; font-weight: 400; transition: color 0.2s;
}
.main-navigation ul li a:hover { color: white; }

/* CTA menu item – add class "menu-cta" in WP Appearance → Menus */
.main-navigation ul li.menu-cta > a {
  background: var(--accent);
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.2s;
}
.main-navigation ul li.menu-cta > a:hover { background: var(--accent-dark); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: white; padding: 4px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav open state */
.nav-open .main-navigation {
  display: flex; flex-direction: column; align-items: flex-start;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy-darker);
  padding: 24px 5vw 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  z-index: 99;
}
.nav-open .main-navigation ul { flex-direction: column; gap: 0; width: 100%; }
.nav-open .main-navigation ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-open .main-navigation ul li a { display: block; padding: 14px 0; font-size: 15px; }
.nav-open .main-navigation ul li.menu-cta { border-bottom: none; margin-top: 16px; }
.nav-open .main-navigation ul li.menu-cta > a { display: inline-block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: white;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  text-decoration: none; border: 2px solid var(--accent);
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: white;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  text-decoration: none; border: 2px solid var(--navy);
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-1px); }

/* ── SECTION UTILITIES ── */
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600; color: var(--navy);
  margin-bottom: 12px; line-height: 1.25;
}
.section-intro {
  font-size: 16px; color: var(--text-secondary);
  max-width: 540px; line-height: 1.7; margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 5vw 130px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 48vw; height: 100%;
  background: var(--navy-dark);
  clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0; opacity: 0.45;
}
.hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  font-weight: 600; line-height: 1.16; color: white;
  max-width: 720px; margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--accent-light); }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,0.68);
  max-width: 580px; line-height: 1.75; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── LEISTUNGEN ── */
.leistungen-section { padding: 100px 5vw; background: var(--white); }

.choose-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.choose-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer; text-decoration: none; display: block; color: inherit;
  position: relative; overflow: hidden;
}
.choose-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--border); transition: background 0.2s;
}
.choose-card.primary::before { background: var(--accent); }
.choose-card:hover { border-color: var(--accent); box-shadow: 0 10px 40px rgba(217,93,91,0.1); transform: translateY(-3px); }
.choose-card:hover::before { background: var(--accent); }

.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 16px;
}
.choose-card.primary .card-num { background: var(--accent); color: white; }
.choose-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.choose-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.card-link { font-size: 13px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 5px; }
.card-link svg { transition: transform 0.2s; }
.choose-card:hover .card-link svg { transform: translateX(4px); }

/* ── PROJEKTE ── */
.projekte-section { padding: 100px 5vw; background: var(--gray-50); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.proj-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.proj-card:hover { box-shadow: 0 8px 32px rgba(56,72,95,0.1); transform: translateY(-2px); }

.proj-tag {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; margin-bottom: 10px; display: block;
}
.proj-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.proj-problem { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.proj-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
.proj-result { font-size: 13.5px; color: var(--navy); line-height: 1.65; font-weight: 500; }
.proj-result-label {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 6px; display: block;
}

/* ── PROZESS ── */
.prozess-section { padding: 100px 5vw; background: var(--white); }

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative; margin-bottom: 40px;
}
.process-steps::before {
  content: ''; position: absolute; top: 19px; left: 7%; right: 7%;
  height: 1px; background: var(--border); z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.step-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 14px; flex-shrink: 0;
}
.step.s-accent .step-dot { background: var(--accent); border-color: var(--accent); color: white; }
.step.s-navy .step-dot  { background: var(--navy);   border-color: var(--navy);   color: white; }
.step.s-opt .step-dot   { background: var(--gray-100); border-color: var(--gray-200); color: var(--text-muted); }
.step-label { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.step-sub   { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.process-note {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 28px 32px; max-width: 680px; margin-top: 16px;
}
.process-note p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.process-note strong { color: var(--navy); font-weight: 500; }

/* ── ABOUT ── */
.about-section { padding: 100px 5vw; background: var(--navy); }
.about-section .section-label { color: var(--accent-light); }
.about-section .section-title { color: white; }

.about-layout { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }

.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  object-fit: cover; object-position: top;
}
.about-photo-accent {
  position: absolute; bottom: -8px; right: -8px;
  width: 100%; aspect-ratio: 3/4;
  border: 3px solid var(--accent); border-radius: var(--radius-lg); z-index: -1;
}
.about-body { padding-top: 8px; }
.about-name { font-size: 22px; font-weight: 600; color: white; margin-bottom: 4px; }
.about-role { font-size: 14px; color: rgba(255,255,255,0.48); margin-bottom: 28px; }
.about-body p { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.78; margin-bottom: 18px; }
.about-body strong { color: white; font-weight: 500; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-tag {
  font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}
.about-tag:hover {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ── FAQ ── */
.faq-section { padding: 100px 5vw; background: var(--white); }
.faq-list { max-width: 680px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 15px; font-weight: 500; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-muted); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA FINAL ── */
.cta-section { padding: 100px 5vw; background: var(--gray-50); }
.cta-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.cta-box h2 { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.cta-box p  { font-size: 15px; color: var(--text-secondary); line-height: 1.7; max-width: 440px; }
.cta-right  { flex-shrink: 0; text-align: center; }
.cta-note   { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ── FOOTER ── */
.site-footer {
  padding: 40px 5vw; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
}
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--navy); }

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.65s ease both; }
.fade-up-2 { animation: fadeUp 0.65s 0.13s ease both; }
.fade-up-3 { animation: fadeUp 0.65s 0.26s ease both; }
.fade-up-4 { animation: fadeUp 0.65s 0.38s ease both; }

/* Intersection observer driven (JS adds .is-visible) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-navigation { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 5vw 80px; }
  .hero::after { display: none; }

  .choose-row { grid-template-columns: 1fr; }
  .proj-grid  { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 200px; }

  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps::before { display: none; }

  .cta-box { flex-direction: column; padding: 36px 28px; }

  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 5vw 72px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .leistungen-section,
  .projekte-section,
  .prozess-section,
  .about-section,
  .faq-section,
  .cta-section { padding: 72px 5vw; }

  .process-steps { grid-template-columns: 1fr 1fr; }
}





/* ── PAGE TEMPLATE (page.php) ── */

.page-hero {
  background: var(--navy);
  padding: 140px 5vw 72px;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.page-content-wrap {
  padding: 72px 5vw 100px;
  background: var(--white);
}
.page-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Typography inside page content */
.page-content-inner h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.page-content-inner h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 8px;
}
.page-content-inner p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 16px;
}
.page-content-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content-inner a:hover {
  color: var(--accent-dark);
}
.page-content-inner ul,
.page-content-inner ol {
  margin: 0 0 16px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.78;
}
.page-content-inner li { margin-bottom: 6px; }

.page-content-inner strong { color: var(--text-primary); font-weight: 500; }

/* Responsive */
@media (max-width: 600px) {
  .page-hero { padding: 120px 5vw 56px; }
  .page-content-wrap { padding: 48px 5vw 72px; }
}


/* ── KONTAKT PAGE (page-kontakt.php) ── */

.kontakt-hero {
  background: var(--navy);
  padding: 140px 5vw 72px;
}
.kontakt-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.kontakt-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-top: 8px;
}

.kontakt-wrap {
  padding: 64px 5vw 100px;
  background: var(--white);
}
.kontakt-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── ASIDE ── */
.kontakt-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-person {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.kontakt-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 500; color: white;
  flex-shrink: 0;
}
.kontakt-name {
  font-size: 14px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 2px;
}
.kontakt-role {
  font-size: 12px; color: var(--text-muted); line-height: 1.4;
}

.kontakt-info {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.kontakt-info-row {
  display: flex; align-items: flex-start; gap: 12px;
}
.kontakt-info-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(56,72,95,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.kontakt-info-text p {
  font-size: 13px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 3px;
}
.kontakt-info-text span {
  font-size: 12px; color: var(--text-secondary); line-height: 1.5;
}
.kontakt-info-divider {
  height: 1px; background: var(--border);
}

.kontakt-email {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
}
.kontakt-email-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 600;
  color: var(--text-muted); margin-bottom: 3px;
}
.kontakt-email-val {
  font-size: 13px; font-weight: 500;
  color: var(--accent); text-decoration: none;
}
.kontakt-email-val:hover { color: var(--accent-dark); }

/* ── FORM SIDE ── */
.kontakt-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* Mobile pills – hidden on desktop */
.kontakt-mobile-pills { display: none; }

/* Fluent Forms overrides – keeps the form on-brand */
.kontakt-form .ff-el-input--label label,
.kontakt-form .ff-el-form-control label {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 5px !important;
}
.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form textarea,
.kontakt-form select {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  background: var(--white) !important;
  color: var(--text-primary) !important;
  transition: border-color 0.2s !important;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus,
.kontakt-form select:focus {
  border-color: var(--navy) !important;
  outline: none !important;
  box-shadow: none !important;
}
.kontakt-form textarea { min-height: 110px !important; resize: vertical !important; }

.kontakt-form .ff-btn-submit,
.kontakt-form button[type="submit"] {
  background: var(--accent) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 13px 28px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
}
.kontakt-form .ff-btn-submit:hover,
.kontakt-form button[type="submit"]:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px) !important;
}

/* Dev placeholder – remove once Fluent Form is wired up */
.kontakt-form-placeholder {
  background: var(--gray-50);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.kontakt-form-placeholder strong { color: var(--text-primary); }
.kontakt-form-placeholder code {
  display: block;
  margin: 8px 0 16px;
  font-size: 12px;
  background: var(--gray-100);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .kontakt-aside { display: none; }
  .kontakt-mobile-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  .kontakt-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500;
    color: var(--text-secondary);
    background: var(--gray-50);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 100px;
  }
  .kontakt-pill svg { color: var(--accent); flex-shrink: 0; }
  .kontakt-form { border: none; padding: 0; }
}

@media (max-width: 600px) {
  .kontakt-hero { padding: 120px 5vw 56px; }
  .kontakt-wrap { padding: 40px 5vw 72px; }
}