/* ----------------------------------------------------------------------------
   CSS Reset & Normalize (essential properties for cross-browser consistency)
----------------------------------------------------------------------------- */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F6F6F8;
  color: #232336;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  border-radius: 14px;
  box-shadow: none;
}
a {
  color: #123965;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #F8B600;
  outline: none;
}
strong {
  font-weight: 600;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ----------------------------------------------------------------------------
   Brand Colors (CSS custom properties)
----------------------------------------------------------------------------- */
:root {
  --color-primary: #123965;
  --color-secondary: #F6F6F8;
  --color-accent: #F8B600;
  --color-bg: #fff9f3;
  --color-muted: #efe5db;
  --color-text: #232336;
  --color-text-dark: #123965;
  --color-shadow: rgba(20,26,37,0.08);
  --color-shadow-blur: rgba(20,26,37,0.14);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ----------------------------------------------------------------------------
   Typography & Headings
----------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 22px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.14;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  line-height: 1.18;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
}
.text-section h2, .text-section h3 {
  margin-top: 22px;
  margin-bottom: 13px;
}
.text-section ul {
  margin-bottom: 0;
}

.disclaimer {
  font-size: 0.95em;
  color: #854820;
  background: #FFF4E1;
  padding: 12px 18px;
  border-radius: 13px;
  margin-top: 18px;
}

/* Spacing utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25em;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 4.5vw;
  }
  .container {
    padding: 0 2vw;
  }
}

/* ----------------------------------------------------------------------------
   Header & Navigation
----------------------------------------------------------------------------- */
header {
  background: var(--color-bg);
  box-shadow: 0 2px 10px var(--color-shadow-blur);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
header img {
  height: 44px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08em;
  padding: 4px 7px;
  border-radius: 11px;
  color: var(--color-primary);
  transition: background 0.15s, color 0.15s;
}
nav a.cta-button {
  background: var(--color-accent);
  color: #fff;
  padding: 9px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1em;
  margin-left: 11px;
  box-shadow: 0 3px 9px var(--color-shadow);
  border: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
nav a.cta-button:hover,
nav a.cta-button:focus {
  background: #ffa800;
  color: var(--color-primary);
  box-shadow: 0 6px 20px var(--color-shadow-blur);
}
nav a:hover,
nav a:focus {
  background: var(--color-muted);
  color: #E36A11;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.18s;
  z-index: 25;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}

/* Responsive Main Navigation */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------------------------------------------------
   Mobile Menu Overlay
----------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff9f3;
  box-shadow: 0 4px 18px rgba(34, 21, 8, 0.13);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.74,0,.28,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: var(--color-accent);
  margin: 26px 20px 10px 20px;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe6ad;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  margin-left: 20px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-primary);
  padding: 19px 0 19px 0;
  margin-bottom: 4px;
  border-radius: 14px;
  transition: background 0.14s, color 0.14s;
  width: 90vw;
  max-width: 400px;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* Make menu fill the screen and cover all */
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
}

/* ----------------------------------------------------------------------------
   Hero Section (/)
----------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(130deg, #fbe6c5 25%, #fff9f3 100%);
  padding: 50px 0 51px 0;
  box-shadow: 0 4px 28px var(--color-shadow-blur);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.1rem;
  font-family: var(--font-display);
  margin-bottom: 17px;
  text-align: center;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 24px;
  color: #663000;
  text-align: center;
}
.hero .cta-button {
  margin-top: 8px;
}

/* ----------------------------------------------------------------------------
   Feature Grid
----------------------------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  box-shadow: 0 4px 18px var(--color-shadow);
  border-radius: 19px;
  flex: 1 1 275px;
  max-width: 328px;
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  min-width: 0;
  transition: transform 0.13s, box-shadow 0.15s;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 10px 30px var(--color-shadow-blur);
}
.feature-grid img {
  width: 50px;
  height: 50px;
  margin-bottom: 13px;
  border-radius: 13px;
  background: #fffbf6;
  box-shadow: 0 1px 6px #f7e6bb88;
}
.feature-grid h3 {
  font-size: 1.22rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.feature-grid p {
  font-size: 1rem;
  color: #5f4102;
}

@media (max-width: 900px) {
  .feature-grid { justify-content: center; }
  .feature-grid > div {
    flex-basis: 100%;
    min-width: 220px;
    max-width: 98vw;
  }
}

/* ----------------------------------------------------------------------------
   Service Cards (dienstleistungen.html)
----------------------------------------------------------------------------- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0 25px 0;
  justify-content: space-between;
}
.service-card {
  background: #fff;
  box-shadow: 0 4px 18px var(--color-shadow);
  border-radius: 19px;
  flex: 1 1 275px;
  max-width: 330px;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  min-width: 0;
  margin-bottom: 20px;
  transition: transform 0.13s, box-shadow 0.15s;
}
.service-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 34px var(--color-shadow-blur);
}
.service-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 13px;
  border-radius: 13px;
  background: #fff9f3;
  box-shadow: 0 1px 6px #f7e6bb66;
}
.service-card h2 {
  font-size: 1.19rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.service-card p {
  color: #6f4a0e;
  margin-bottom: 10px;
}
.service-card .price {
  background: #FFF4E1;
  color: #c96e01;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 15px;
  font-family: var(--font-display);
  font-size: 1.01em;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-grid { justify-content: center; }
  .service-card {
    flex-basis: 100%;
    min-width: 210px;
    max-width: 98vw;
  }
}

/* ----------------------------------------------------------------------------
   Cards & Containers
----------------------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  overflow: hidden;
  transition: box-shadow 0.14s, transform 0.10s;
}
.card:hover {
  box-shadow: 0 11px 38px var(--color-shadow-blur);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 10px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ----------------------------------------------------------------------------
   CTA Section
----------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(90deg, #fff9f3 0%, #fbe6c5 100%);
  border-radius: 17px;
  box-shadow: 0 2px 10px var(--color-shadow-blur);
  margin: 40px 0;
  padding: 53px 0;
  text-align: center;
}
.cta h2 {
  color: #bd8217;
  font-size: 2.1em;
  margin-bottom: 19px;
}
.cta .cta-button {
  font-size: 1.15em;
  padding: 12px 32px;
}
@media (max-width: 900px) {
  .cta {
    margin: 24px 0;
    padding: 34px 3vw;
  }
  .cta h2 { font-size: 1.3em; }
}

.cta-area {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 22px;
  justify-content: flex-start;
}
@media (max-width: 600px){ .cta-area { flex-direction: column; } }

/* ----------------------------------------------------------------------------
   Testimonial Section
----------------------------------------------------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 19px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 7px 32px var(--color-shadow-blur);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px 20px 22px;
  min-width: 230px;
  max-width: 370px;
  margin-bottom: 20px;
  color: #1d232d;
  font-family: var(--font-body);
  font-size: 1.07em;
}
.testimonial-card p {
  font-size: 1.08em;
  color: #664e27;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 99vw;
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------
   Feature Item Flex (utility)
----------------------------------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------------------------------------
   FAQ Accordion (faq.html)
----------------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 24px 22px 19px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 7px 29px var(--color-shadow-blur);
}
.faq-item h2 {
  font-size: 1.10em;
  font-family: var(--font-display);
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 700;
}
.faq-answer {
  font-size: 1em;
  color: #665014;
}

/* ----------------------------------------------------------------------------
   Pricing Table (preise.html)
----------------------------------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px var(--color-shadow-blur);
  overflow: hidden;
  margin-bottom: 18px;
  margin-top: 12px;
}
.pricing-table th, .pricing-table td {
  padding: 17px 19px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.08em;
  color: var(--color-text);
}
.pricing-table th {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.12em;
}
.pricing-table tr:nth-child(even) td {
  background: #FFF7EB;
}
.pricing-table tr:hover td {
  background: #FFD883;
  color: var(--color-primary);
}
@media (max-width: 640px){
  .pricing-table th, .pricing-table td{ font-size: 0.97em; padding: 13px 5px; }
}

/* ----------------------------------------------------------------------------
   Contact Cards & Map
----------------------------------------------------------------------------- */
.contact-cta, .map-fake {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-top: 22px;
  margin-bottom: 19px;
  padding: 26px 16px;
}
.contact-cta h2 { margin-bottom: 20px; }
.contact-cta ul {
  margin-bottom: 9px;
}
.contact-cta ul li,
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  font-size: 1.05em;
}
.contact-cta ul li img,
.text-section ul li img {
  width: 19px;
  height: 19px;
  border-radius: 4px;
  background: #fffbf6;
}
.contact-cta p img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.map-fake {
  border: 1.5px solid var(--color-accent);
  border-radius: 14px;
  padding: 22px 14px;
  background: #fffae4;
  text-align: center;
  color: #937b34;
  margin-top: 13px;
  font-size: 1.01em;
}

/* ----------------------------------------------------------------------------
   Footer
----------------------------------------------------------------------------- */
footer {
  background: var(--color-bg);
  padding: 32px 0 0 0;
  margin-top: 70px;
  box-shadow: 0 -2px 10px var(--color-shadow-blur);
}
.footer-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.01em;
  padding: 5px 0;
  transition: color 0.13s;
  border-radius: 7px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #E36A11;
  background: #ffefd4;
}
.brand-logo img {
  height: 49px;
}
.footer-contact {
  margin-top: 16px;
  padding-bottom: 12px;
  font-size: 0.97em;
  color: #624a16;
  text-align: center;
}
@media (max-width: 768px){
  .footer-row {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    gap: 7px;
  }
  .brand-logo img { height: 40px; }
}

/* ----------------------------------------------------------------------------
   CTA Button & General Buttons
----------------------------------------------------------------------------- */
.cta-button, .button {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  box-shadow: 0 3px 9px var(--color-shadow);
  font-size: 1.07em;
  letter-spacing: 0.04em;
  transition: background 0.14s, color 0.16s, transform 0.13s, box-shadow 0.14s;
  cursor: pointer;
  display: inline-block;
  margin: 0 7px 7px 0;
  text-align: center;
}
.cta-button:active, .cta-button:focus, .button:focus {
  outline: none;
  background: #ffaf1f;
  color: #fff;
  box-shadow: 0 2px 20px var(--color-shadow-blur);
}
.cta-button:hover, .button:hover {
  background: #ffd36c;
  color: var(--color-primary);
  transform: translateY(-1.5px) scale(1.03);
}

/* ----------------------------------------------------------------------------
   Utility Spacing for Custom Patterns -- (MANDATORY)
----------------------------------------------------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ----------------------------------------------------------------------------
   Cookie Consent Banner
----------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff5e6;
  color: var(--color-primary);
  font-family: var(--font-body);
  box-shadow: 0 -4px 16px var(--color-shadow-blur);
  padding: 22px 16px 22px 16px;
  z-index: 19999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(.79,0,.19,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-message {
  flex: 1;
  font-size: 1.02em;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  padding: 9px 19px;
  margin-left: 0;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 2px 7px var(--color-shadow);
  transition: background 0.18s, color 0.14s, transform 0.14s;
}
.cookie-btn.cookie-settings {
  background: #FFF4E1;
  color: var(--color-primary);
  border: 1px solid #ffe7b5;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffd36c;
  color: var(--color-primary);
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #fff2b0;
  color: #b17a02;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .cookie-banner-buttons {
    flex-direction: row;
    gap: 5px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 10, 2, 0.35);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 35px var(--color-shadow-blur);
  padding: 38px 25px 26px 25px;
  min-width: 320px;
  max-width: 97vw;
  color: var(--color-primary);
  animation: pop-in .35s cubic-bezier(.64,.21,.12,1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.45em;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--color-accent);
  border-radius: 7px;
}
.cookie-category label {
  color: var(--color-text-dark);
  font-size: 1.09em;
  font-weight: 500;
  user-select: none;
}
.cookie-category.essential label,
.cookie-category.essential input {
  opacity: 0.53;
  pointer-events: none;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 17px;
  margin-bottom: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.13s;
  border-radius: 50%;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFF7EB;
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.91) translateY(31px); }
  100% { opacity: 1; transform: scale(1.0) translateY(0); }
}

/* ----------------------------------------------------------------------------
   Responsive Typography Scale & Utility Classes
----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  .hero h1 { font-size: 1.4rem; }
  .footer-contact, .disclaimer, p, ul, li, td, th { font-size: 0.98em; }
}

/* ----------------------------------------------------------------------------
   Animations & Microinteractions
----------------------------------------------------------------------------- */
button, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  transition: background 0.15s, box-shadow 0.17s, color 0.13s, transform 0.09s;
}
button:active, .cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1.5px 3.5px var(--color-shadow-blur);
}

/* ----------------------------------------------------------------------------
   Misc: Hide scrollbars for mobile menu
----------------------------------------------------------------------------- */
.mobile-menu,
.mobile-menu nav {
  scrollbar-width: thin;
  scrollbar-color: #efb441 #fff9f3;
}
.mobile-menu::-webkit-scrollbar {
  width: 8px;
  background: #fff9f3;
}
.mobile-menu::-webkit-scrollbar-thumb {
  background: #FFD883;
  border-radius: 7px;
}

/* ----------------------------------------------------------------------------
   Accessibility & Focus Outlines
----------------------------------------------------------------------------- */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* ----------------------------------------------------------------------------
   Special Thank You & Info Pages Centering
----------------------------------------------------------------------------- */
@media only screen and (min-width: 600px) {
  .content-wrapper[style*="text-align:center"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 60px auto;
  }
}

/* ----------------------------------------------------------------------------
   END CSS FOR SedenroAuto (WARM_FRIENDLY STYLE, FLEXBOX ONLY)
----------------------------------------------------------------------------- */
