/* =====================================================================
   CSS RESET & NORMALIZATION (MOBILE-FIRST)
===================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #134066;
  background: #FFF;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #134066;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B400;
  outline: none;
}
:focus {
  outline: 2px solid #F4B400;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* =====================================================================
   BRAND — GEOMETRIC STRUCTURED DESIGN SYSTEM
===================================================================== */
:root {
  --primary: #134066;
  --secondary: #F4B400;
  --accent: #FFFFFF;
  --text: #134066;
  --muted: #e8eef6;
  --shadow: rgba(19, 64, 102, 0.08);
  --border-radius: 12px;
  --radius-square: 0.5em;
  --transition: 0.24s cubic-bezier(.4,0,.2,1);
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 32px;
  --spacing-xl: 48px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--accent);
  color: var(--text);
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-m);
}
h2 {
  font-size: 1.5rem;
  line-height: 1.24;
  margin-bottom: var(--spacing-m);
}
h3 {
  font-size: 1.125rem;
  line-height: 1.28;
  margin-bottom: var(--spacing-s);
}
h4, h5 {
  font-size: 1rem;
  margin-bottom: var(--spacing-xs);
}
p {
  font-size: 1rem;
  margin-bottom: var(--spacing-m);
  color: var(--text);
}
b, strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* =====================================================================
   LAYOUT CONTAINERS & STRUCTURE
===================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--spacing-m);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flexible Patterns */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: var(--accent);
  border: 1.5px solid var(--muted);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 32px var(--shadow);
  padding: var(--spacing-l);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 40px rgba(19,64,102,0.16);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fafb;
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--shadow);
  border-left: 6px solid var(--secondary);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================================================
   HEADER & NAVIGATION: Geometric Structured
===================================================================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid var(--muted);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 16px var(--shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-m);
  min-height: 72px;
  position: relative;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-m);
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--secondary);
}
.btn-primary {
  padding: 0.7em 2em;
  border-radius: 32px 8px 32px 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-left: auto;
  box-shadow: 0 1px 8px var(--shadow);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 24px var(--shadow);
}

/* =====================================================================
   MOBILE MENU
===================================================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: 16px;
}
.mobile-menu {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(19,64,102,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.35s cubic-bezier(.7,0,.2,1), left 0s 0.35s;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw) translateX(0vw);
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(.7,0,.2,1), left 0s;
}
.mobile-menu-close {
  margin: 32px 16px;
  margin-bottom: 16px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 56px 24px;
  width: 80vw;
  max-width: 360px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  padding: 6px 0px;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* Hide navigation on mobile, show burger */
@media (max-width: 1024px) {
  nav.main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================================================================
   HERO & GEOMETRIC BANNERS
===================================================================== */
.hero {
  background: linear-gradient(120deg, #e8eef6 60%, #fff 100%);
  padding: 48px 0;
  margin-bottom: 48px;
  border-radius: 0 0 80px 0;
  box-shadow: 0 16px 48px -16px var(--shadow);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  max-width: 650px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.25rem;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-l);
}

/* =====================================================================
   FEATURES & VORTEILE: GEOMETRIC CARDS
===================================================================== */
.features-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  background: #fff;
  border: 1.7px solid var(--muted);
  border-radius: 20px 6px 20px 6px;
  padding: 36px 24px 28px 24px;
  box-shadow: 0 2px 24px 0 var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  color: var(--primary);
}
.feature p {
  font-size: 1rem;
  color: var(--text);
}
.feature:hover {
  box-shadow: 0 8px 40px 0 var(--shadow);
  transform: scale(1.03) translateY(-2px);
  z-index: 3;
}

/* =====================================================================
   SERVICE LIST & HIGHLIGHTS
===================================================================== */
.service-list {
  margin-top: var(--spacing-s);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: var(--spacing-s);
}
.service-highlights {
  display: flex;
  gap: 18px;
  margin-top: var(--spacing-s);
  flex-wrap: wrap;
}
.service-highlights span {
  background: var(--primary);
  color: #fff;
  border-radius: 20px 6px 20px 6px;
  font-size: 0.95rem;
  padding: 7px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =====================================================================
   TESTIMONIALS, CTA & GEOMETRY
===================================================================== */
.testimonial-card {
  background: #fbfbfb;
  border-left: 6px solid var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 24px var(--shadow);
  padding: var(--spacing-m) var(--spacing-l);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.testimonial-card p {
  color: #1a2345;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-info span {
  font-size: 0.98rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
}

/* CTA BANNER */
.section .btn-primary {
  margin-top: 12px;
}

/* =====================================================================
   TABLES (PREISE PAGE)
===================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--spacing-l);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 20px var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-size: 1.08rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-table td {
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid var(--muted);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* DELIVERY ZONES & HIGHLIGHT */
.delivery-zones {
  margin-top: 24px;
  background: #f4f7fa;
  padding: 22px 18px;
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 1px 8px var(--shadow);
}

.delivery-zones ul {
  margin-bottom: 16px;
}

/* =====================================================================
   FAQ (ACCORIDON, LIST)
===================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion details {
  background: #f8fafb;
  border-radius: 16px;
  border-left: 6px solid var(--primary);
  box-shadow: 0 2px 14px var(--shadow);
  padding: 18px 20px 14px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  transition: box-shadow var(--transition);
}
.faq-accordion details[open] {
  background: #e8eef6;
  box-shadow: 0 4px 24px var(--shadow);
}
.faq-accordion summary {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  outline: none;
  padding-bottom: 8px;
  border-bottom: 1px dotted #b6bfc9;
  margin-bottom: 10px;
}
.faq-accordion details > div {
  margin-top: 12px;
  color: var(--text);
  font-size: 0.97rem;
}

.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--primary);
  margin-top: 18px;
}
.faq-list dd {
  font-size: 1rem;
  margin-left: 0;
  margin-bottom: 14px;
  color: var(--text);
}

/* =====================================================================
   FOOTER
===================================================================== */
footer {
  width: 100%;
  padding: 0px 0 18px 0;
  background: #f8fafb;
  border-top: 2.5px solid var(--muted);
  position: relative;
  box-shadow: 0 -2px 24px var(--shadow);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding: var(--spacing-l) var(--spacing-m) 0 var(--spacing-m);
}
.logo-footer img {
  height: 40px;
  width: auto;
}
nav.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.009em;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  color: #344664;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  width: 1.08em;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-copyright {
  width: 100%;
  font-size: 0.93rem;
  color: #7b94b0;
  margin-top: 22px;
  text-align: left;
}

/* =====================================================================
   FORMS (Kontakt, etc.)
===================================================================== */
input, textarea, select {
  border: 1.2px solid var(--muted);
  border-radius: var(--border-radius);
  padding: 12px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: var(--spacing-s);
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8fafb;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
button, .btn-primary {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
button:active {
  transform: scale(0.98);
}

/* =====================================================================
   MISCELLANEOUS LAYOUTS & CARDS
===================================================================== */
.address-block, .map-info, .map-placeholder {
  background: #f8fafb;
  border-radius: 15px 4px 15px 4px;
  padding: 20px 18px 16px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-icons {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  align-items: center;
}
.process-icons img {
  width: 36px;
  height: 36px;
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
===================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10001;
  background: #fff;
  box-shadow: 0 -4px 30px var(--shadow), 0 -1px 0px #eaeaea;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4vw;
  border-radius: 32px 32px 0 0;
  animation: cookie-banner-in 0.35s ease;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.6em 1.2em;
  border: none;
  cursor: pointer;
  border-radius: 30px 8px 30px 8px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: background var(--transition), color var(--transition);
  margin-right: 8px;
}
.cookie-consent-banner .accept {
  background: var(--primary);
  color: #fff;
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-consent-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: var(--muted);
}
.cookie-consent-banner .settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-consent-banner .settings:hover,
.cookie-consent-banner .settings:focus {
  background: #ffe488;
}
@keyframes cookie-banner-in {
  from { transform: translateY(200%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10010;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,64,102,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.3s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 8px 32px var(--shadow);
  min-width: 330px;
  max-width: 98vw;
  padding: 38px 32px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  animation: cookie-modal-in 0.3s ease;
}
@keyframes cookie-modal-in {
  from { transform: scale(0.8); opacity:0.3; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0.5em;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  height: 18px;
  background: var(--muted);
  border-radius: 9px;
  border: 2px solid #d1d9e6;
  outline: none;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #f4b40033;
  border-color: var(--secondary);
}
.cookie-modal .cookie-toggle:after {
  display: block;
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.18s cubic-bezier(.5,0,.2,1), background 0.13s;
}
.cookie-modal .cookie-toggle:checked:after {
  left: 22px;
  background: var(--secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.6em 1.2em;
  border: none;
  cursor: pointer;
  border-radius: 30px 8px 30px 8px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .accept {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .close {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-modal .close:hover {
  background: var(--muted);
}
.cookie-modal .cookie-category.essential {
  opacity: 0.66;
}
.cookie-modal .cookie-toggle[disabled] {
  cursor: not-allowed;
}

/* =====================================================================
   RESPONSIVE FLEXBOX ADAPTATIONS
===================================================================== */
@media (max-width: 900px) {
  .features-grid,
  .card-container,
  .content-grid {
    gap: 18px;
  }
  footer .container {
    gap: 22px;
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 12px;
    gap: var(--spacing-s);
  }
  .content-wrapper {
    gap: var(--spacing-s);
  }
  .hero {
    padding: 34px 0 36px 0;
    margin-bottom: 28px;
    border-radius: 0 0 40px 0;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
    padding: 24px 16px 16px 16px;
  }
  .testimonial-card {
    padding: 16px 10px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  nav.mobile-nav {
    margin: 44px 10px;
    gap: 18px;
    max-width: 96vw;
    width: 96vw;
  }
}
@media (max-width: 428px) {
  html {
    font-size: 14px;
  }
  .hero h1 { font-size: 1.2rem; }
  .hero p { font-size: 1rem; }
  .footer-contact, .footer-copyright {
    font-size: 0.91rem;
  }
  .cookie-consent-banner {
    padding: 12px 2vw;
    font-size: 0.96rem;
    gap: 10px 14px;
  }
  .cookie-modal {
    min-width: 94vw;
    padding: 18px 8px 18px 8px;
  }
}

/* =====================================================================
   VISUAL/GEOMETRIC DECORATION FOR PAGE PERSONALITY
===================================================================== */
.section {
  background: #fff;
  box-shadow: 0 2px 32px var(--shadow);
  border-radius: 26px 4px 26px 4px;
}
.section:nth-of-type(even) {
  background: #f4f7fa;
}

/* =====================================================================
   MICRO-INTERACTIONS & TRANSITIONS
===================================================================== */
.btn-primary, .cookie-consent-banner button, .cookie-modal button {
  will-change: background, color, transform;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform 0.08s;
}
.btn-primary:active, .cookie-consent-banner button:active, .cookie-modal button:active {
  transform: scale(0.98);
}

/* Inputs animated border */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px #e8eef6;
}

/* =====================================================================
   STANDARD TYPOGRAPHY HIERARCHY
===================================================================== */
@media (min-width: 769px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.8rem; }
}

/* =====================================================================
   SPECIAL PAGE: Danke
===================================================================== */
.thankyou-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* =====================================================================
   ACCESSIBILITY
===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}
