/* ═══════════════════════════════════════════════════
   Avidata – Statische Webseite
   Gemeinsame Styles für alle Seiten
   ═══════════════════════════════════════════════════ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button, a[href], select, input[type="checkbox"], input[type="radio"] { cursor: pointer; }

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; }
}

/* ─── Colors (CSS Variables) ─── */
:root {
  --purple: #3a0a4a;
  --purple-mid: #4a1060;
  --purple-light: #6b1d8e;
  --purple-lighter: #5c1a78;
  --orange: #e8a020;
  --orange-hover: #d4911a;
  --coral: #e07030;
  --yellow: #f0d060;
  --pink: #d04080;
  --dark: #1a1a2e;
  --text: #444;
  --text-light: #555;
  --text-muted: #888;
  --bg-light: #f9f5fc;
  --border-light: #e8ddf0;
  --border-purple: #e0d6ea;
}

/* ─── Navigation ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(58, 10, 74, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.navbar-logo img { height: 2rem; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .navbar-logo img { height: 2.5rem; } }
.navbar-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .navbar-links { display: flex; } }
.navbar-links a {
  color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.navbar-links a:hover { color: #fff; }
.navbar-links .btn-cta {
  background: var(--orange); color: #fff; font-weight: 600;
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  transition: all 0.2s;
}
.navbar-links .btn-cta:hover { background: var(--coral); box-shadow: 0 4px 15px rgba(232,160,32,0.25); }
.navbar-toggle {
  display: block; background: none; border: none; color: #fff; padding: 0.5rem;
}
@media (min-width: 768px) { .navbar-toggle { display: none; } }
.navbar-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; background: rgba(58,10,74,0.98); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu .container { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.mobile-menu a {
  color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 500; padding: 0.5rem 0;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn-cta {
  background: var(--orange); color: #fff; font-size: 0.875rem; font-weight: 600;
  padding: 0.625rem 1.25rem; border-radius: 9999px; text-align: center; margin-top: 0.5rem;
  display: inline-block;
}

/* ─── Hero Section ─── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(58,10,74,0.8), rgba(74,16,96,0.7), rgba(92,26,120,0.6));
}
.hero-deco-1 {
  position: absolute; top: 5rem; right: 10%;
  width: 12rem; height: 12rem; background: rgba(232,160,32,0.3);
  border-radius: 50%; filter: blur(40px); animation: float 6s ease-in-out infinite;
}
.hero-deco-2 {
  position: absolute; bottom: 8rem; left: 5%;
  width: 7rem; height: 7rem; background: rgba(240,208,96,0.2);
  border-radius: 50%; filter: blur(30px); animation: float-slow 8s ease-in-out infinite;
}
.hero-content {
  position: relative; text-align: center; padding-top: 8rem; padding-bottom: 5rem; width: 100%;
}
.hero-label {
  color: var(--orange); font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 2.5rem; font-weight: 700; color: #fff; max-width: 56rem;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.875rem 2rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  backdrop-filter: blur(4px); transition: all 0.3s;
}
.hero-btn:hover { background: rgba(255,255,255,0.2); box-shadow: 0 4px 15px rgba(255,255,255,0.1); }
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ─── Impact Section ─── */
.impact { position: relative; padding: 5rem 0 7rem; background: #fff; overflow: hidden; }
.impact-deco-circle {
  position: absolute; left: -2.5rem; top: 2.5rem;
  width: 10rem; height: 10rem; border: 5px solid rgba(232,160,32,0.25);
  border-radius: 50%; animation: float-slow 8s ease-in-out infinite;
}
.impact-deco-dot {
  position: absolute; right: 15%; top: 20%;
  width: 1rem; height: 1rem; background: var(--orange); border-radius: 50%;
}
.impact .label {
  color: var(--orange); font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  text-align: center; margin-bottom: 1.5rem;
}
.impact h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--dark); text-align: center;
  max-width: 48rem; margin: 0 auto; line-height: 1.4;
}
@media (min-width: 640px) { .impact h2 { font-size: 1.875rem; } }
@media (min-width: 768px) { .impact h2 { font-size: 2.25rem; } }
.impact h2 .highlight { color: var(--orange); font-style: italic; }

/* ─── Marketing Section (Purple) ─── */
.marketing { position: relative; overflow: hidden; }
.marketing-inner { position: relative; padding: 5rem 0 7rem; }
.marketing-bg { position: absolute; inset: 0; }
.marketing-bg img { width: 100%; height: 100%; object-fit: cover; }
.marketing-bg-overlay { position: absolute; inset: 0; background: rgba(58,10,74,0.85); }
.marketing-dots span {
  position: absolute; border-radius: 50%;
}
.marketing-dots .d1 { top: 2.5rem; right: 20%; width: 0.75rem; height: 0.75rem; background: var(--yellow); }
.marketing-dots .d2 { bottom: 4rem; left: 25%; width: 0.5rem; height: 0.5rem; background: var(--orange); }
.marketing-dots .d3 { top: 50%; right: 10%; width: 0.5rem; height: 0.5rem; background: var(--pink); }
.marketing-content { position: relative; text-align: center; max-width: 48rem; margin: 0 auto; }
.marketing .label {
  color: var(--orange); font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.marketing h2 { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 2rem; }
@media (min-width: 640px) { .marketing h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .marketing h2 { font-size: 3rem; } }
.marketing p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) { .marketing p { font-size: 1.125rem; } }

/* ─── Kampagne Section ─── */
.kampagne {
  position: relative; padding: 4rem 0 6rem; overflow: hidden;
  background: linear-gradient(135deg, #e8d5f0 0%, #f5e6d0 50%, #fce4c8 100%);
  text-align: center;
}
.kampagne h2 { font-size: 1.875rem; font-weight: 700; color: var(--purple); }
@media (min-width: 640px) { .kampagne h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .kampagne h2 { font-size: 3rem; } }
.kampagne .highlight { font-style: italic; color: var(--orange); }

/* ─── Brands Section ─── */
.brands { padding: 5rem 0 7rem; background: #fff; }
.brands h2 {
  font-size: 1.875rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .brands h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .brands h2 { font-size: 3rem; } }
.brands > .container > p {
  text-align: center; color: var(--text-light); font-size: 1rem; max-width: 42rem;
  margin: 0 auto 3rem; line-height: 1.75;
}
@media (min-width: 768px) { .brands > .container > p { font-size: 1.125rem; } }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem;
  max-width: 42rem; margin: 0 auto 4rem;
}
.stat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0; border-bottom: 1px solid #e5e7eb;
}
.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); }
.stat-value { font-size: 0.875rem; font-weight: 700; color: var(--purple); }

/* ─── Services Section ─── */
.services { padding: 4rem 0 5rem; background: #fff; }
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 64rem; margin: 0 auto;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card {
  text-align: center; padding: 1.5rem; border-radius: 1rem;
  transition: all 0.3s;
}
.service-card:hover { background: rgba(249,245,252,0.8); }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; margin-bottom: 1.25rem;
  border: 1px solid #e5e7eb; border-radius: 0.75rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon { border-color: rgba(232,160,32,0.3); background: rgba(232,160,32,0.05); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--dark); stroke-width: 1.5; fill: none; transition: stroke 0.3s; }
.service-card:hover .service-icon svg { stroke: var(--orange); }
.service-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ─── Process Section ─── */
.process { padding: 5rem 0 7rem; background: #fff; }
.process .label {
  color: var(--orange); font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  text-align: center; margin-bottom: 1rem;
}
.process h2 {
  font-size: 1.875rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 4rem;
}
@media (min-width: 640px) { .process h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .process h2 { font-size: 3rem; } }
.process-timeline { position: relative; max-width: 48rem; margin: 0 auto; }
.process-line {
  display: none; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, rgba(58,10,74,0.2), rgba(232,160,32,0.3), rgba(240,208,96,0.2));
}
@media (min-width: 640px) { .process-line { display: block; } }
.process-step { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .process-step { gap: 3rem; } }
.process-step.reverse { flex-direction: row; }
@media (min-width: 768px) { .process-step.reverse { flex-direction: row-reverse; } }
.process-step .content { flex: 1; }
.process-step.reverse .content { text-align: left; }
@media (min-width: 768px) { .process-step.reverse .content { text-align: right; } }
.process-step .num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: rgba(58,10,74,0.1); line-height: 1;
}
@media (min-width: 768px) { .process-step .num { font-size: 3.75rem; } }
.process-step h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-top: -1rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .process-step h3 { font-size: 1.5rem; } }
.process-step p { color: var(--text-light); font-size: 0.875rem; line-height: 1.6; }
@media (min-width: 768px) { .process-step p { font-size: 1rem; } }
.process-dot {
  display: none; width: 1rem; height: 1rem; border-radius: 50%;
  background: var(--orange); border: 4px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 2rem; flex-shrink: 0;
}
@media (min-width: 640px) { .process-dot { display: block; } }
.process-spacer { flex: 1; display: none; }
@media (min-width: 768px) { .process-spacer { display: block; } }

/* ─── Performance CTA ─── */
.perf-cta { position: relative; padding: 5rem 0 7rem; overflow: hidden; }
.perf-cta-bg { position: absolute; inset: 0; }
.perf-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.perf-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(58,10,74,0.8), rgba(92,26,120,0.5), rgba(92,26,120,0.2));
}
.perf-cta-inner { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .perf-cta-inner { grid-template-columns: 1fr 1fr; } }
.perf-cta h2 { font-size: 1.875rem; font-weight: 700; color: #fff; line-height: 1.2; }
@media (min-width: 640px) { .perf-cta h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .perf-cta h2 { font-size: 3rem; } }
.perf-cta p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
@media (min-width: 768px) { .perf-cta p { font-size: 1.125rem; } }
.btn-orange {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: #fff; padding: 0.875rem 2rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: all 0.3s; border: none;
}
.btn-orange:hover { background: var(--coral); box-shadow: 0 4px 15px rgba(232,160,32,0.25); }

/* ─── Let's Work Section ─── */
.letswork { position: relative; padding: 5rem 0 7rem; overflow: hidden; text-align: center; }
.letswork-bg { position: absolute; inset: 0; }
.letswork-bg img { width: 100%; height: 100%; object-fit: cover; }
.letswork-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.letswork-content { position: relative; }
.letswork .label {
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.letswork h2 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .letswork h2 { font-size: 3rem; } }
@media (min-width: 768px) { .letswork h2 { font-size: 3.75rem; } }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--purple); padding: 1rem 2.5rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 700;
  transition: all 0.3s; border: none;
}
.btn-white:hover { background: rgba(255,255,255,0.9); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ─── Ready Section ─── */
.ready { padding: 4rem 0 5rem; background: #fff; text-align: center; }
.ready h2 { font-size: 1.875rem; font-weight: 700; color: var(--dark); font-style: italic; }
@media (min-width: 640px) { .ready h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .ready h2 { font-size: 3rem; } }

/* ─── Footer ─── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 3rem 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo img { height: 2rem; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.6; }
.footer h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul li { font-size: 0.875rem; }
.footer ul a { transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; }
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a { font-size: 0.75rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ─── Subpage Footer (Impressum, Datenschutz, Kontakt) ─── */
.sub-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.sub-footer-top { padding: 4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sub-footer-top-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start;
}
@media (min-width: 768px) { .sub-footer-top-grid { grid-template-columns: 1fr 1fr; } }
.sub-footer-top h2 { font-size: 1.875rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 640px) { .sub-footer-top h2 { font-size: 2.25rem; } }
.sub-footer-top .logo img { height: 2.5rem; filter: brightness(0) invert(1); margin-top: 1.5rem; }
.sub-footer-contact { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 640px) { .sub-footer-contact { flex-direction: row; } }
.sub-footer-contact h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.sub-footer-contact ul { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; }
.sub-footer-contact a:hover { color: #fff; }
.sub-footer-contact .right { margin-left: auto; }
@media (max-width: 639px) { .sub-footer-contact .right { margin-left: 0; } }
.sub-footer-bottom { padding: 1.5rem 0; }
.sub-footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .sub-footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.sub-footer-bottom-links { display: flex; gap: 1.5rem; }
.sub-footer-bottom-links a { font-size: 0.75rem; transition: color 0.2s; }
.sub-footer-bottom-links a:hover { color: #fff; }
.sub-footer-bottom p { font-size: 0.75rem; }

/* ─── Subpage Content (Impressum, Datenschutz) ─── */
.subpage-content { padding-top: 7rem; padding-bottom: 5rem; }
.subpage-content .inner { max-width: 48rem; margin: 0 auto; }
.subpage-content h1 { font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 3rem; }
@media (min-width: 640px) { .subpage-content h1 { font-size: 3rem; } }
.subpage-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-top: 3rem; margin-bottom: 1.5rem; }
.subpage-content h2.big { font-size: 1.5rem; margin-top: 3rem; margin-bottom: 1.5rem; }
.subpage-content h3 { font-size: 1.125rem; font-weight: 600; color: var(--dark); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.subpage-content h3.underline { text-decoration: underline; }
.subpage-content p { color: var(--text); line-height: 1.75; margin-bottom: 1rem; }
.subpage-content ul.bullet { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.subpage-content ul.bullet li { color: var(--text); line-height: 1.75; margin-bottom: 0.25rem; }
.subpage-content a.link { color: var(--purple-light); }
.subpage-content a.link:hover { text-decoration: underline; }
.subpage-content .address-block {
  padding-left: 1rem; border-left: 2px solid var(--orange); margin-bottom: 1rem;
}
.subpage-content .address-block p { margin-bottom: 0.25rem; }
.subpage-content .address-block .bold { font-weight: 600; }

/* ─── Kontakt Page ─── */
.kontakt-hero {
  position: relative; padding-top: 8rem; padding-bottom: 5rem; overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid), var(--purple-light));
  text-align: center;
}
.kontakt-hero-deco-1 {
  position: absolute; top: 4rem; right: 15%;
  width: 10rem; height: 10rem; background: rgba(232,160,32,0.2);
  border-radius: 50%; filter: blur(48px);
}
.kontakt-hero-deco-2 {
  position: absolute; bottom: 2.5rem; left: 10%;
  width: 6rem; height: 6rem; background: rgba(232,160,32,0.15);
  border-radius: 50%; filter: blur(32px);
}
.kontakt-hero .label {
  color: var(--orange); font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem;
}
.kontakt-hero h1 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 640px) { .kontakt-hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .kontakt-hero h1 { font-size: 3.75rem; } }
.kontakt-hero p { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }
.kontakt-main { padding: 4rem 0 6rem; }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .kontakt-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }
.kontakt-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
@media (min-width: 640px) { .kontakt-info h2 { font-size: 1.875rem; } }
.kontakt-info > p { color: var(--text-light); line-height: 1.6; margin-bottom: 2rem; }
.info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--bg-light); border-radius: 0.75rem;
  border: 1px solid var(--border-light); margin-bottom: 1.25rem;
}
.info-card-icon {
  width: 2.5rem; height: 2.5rem; background: rgba(107,29,142,0.1);
  border-radius: 0.5rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card-icon svg { width: 20px; height: 20px; stroke: var(--purple-light); stroke-width: 2; fill: none; }
.info-card h3 { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.25rem; }
.info-card p, .info-card a { font-size: 0.875rem; color: var(--text-light); }
.info-card a { color: var(--purple-light); }
.info-card a:hover { text-decoration: underline; }

/* Form */
.kontakt-form {
  background: #fff; border: 1px solid var(--border-purple); border-radius: 1rem;
  padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .kontakt-form { padding: 2.5rem; } }
.kontakt-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #333; margin-bottom: 0.375rem; }
.form-label .req { color: #ef4444; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: #faf8fc; border: 1px solid var(--border-purple);
  border-radius: 0.75rem; font-size: 0.875rem; color: var(--dark);
  transition: all 0.2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #aaa; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(107,29,142,0.15);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: none; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1.25rem; }
.form-hint a { color: var(--purple-light); }
.form-hint a:hover { text-decoration: underline; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--orange); color: #fff; padding: 0.875rem 2rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: all 0.3s; border: none; width: 100%;
}
@media (min-width: 640px) { .btn-submit { width: auto; } }
.btn-submit:hover { background: var(--orange-hover); box-shadow: 0 4px 15px rgba(232,160,32,0.2); }

/* Success state */
.form-success {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 1rem;
  padding: 2.5rem; text-align: center;
}
.form-success-icon {
  width: 4rem; height: 4rem; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 28px; height: 28px; stroke: #16a34a; stroke-width: 2; fill: none; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); margin-bottom: 1.5rem; }
.form-success a.link { color: var(--purple-light); font-weight: 600; }
.form-success button.reset-btn {
  background: none; border: none; color: var(--purple-light);
  font-weight: 600; font-size: 0.875rem;
}
.form-success button.reset-btn:hover { text-decoration: underline; }

/* ─── Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(2rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Navbar for subpages (solid bg) ─── */
.navbar-solid { background: var(--purple); }
.navbar-solid.scrolled { background: rgba(58,10,74,0.95); }
