/* --- CSS RESET & NORMALIZE --- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #133a5c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

/* --- BRANDING AND GLOBAL TYPOGRAPHY --- */
:root {
  --color-primary: #133a5c;
  --color-secondary: #f7c948;
  --color-accent: #ffffff;
  --color-neutral: #fafbfc;
  --color-text: #133a5c;
  --color-muted: #686868;
  --shadow-1: 0 2px 8px rgba(19,58,92,0.05);
  --shadow-2: 0 8px 32px rgba(19,58,92,0.09);
  --radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol, dl {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

/* --- CONTAINER & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER & MAIN NAVIGATION --- */
header {
  background: var(--color-accent);
  border-bottom: 1px solid #e4e8ee;
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0 6px;
  color: var(--color-text);
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
}
.main-nav .button {
  margin-left: 16px;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid #e4e8ee;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  transition: box-shadow .18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
  box-shadow: 0 0 0 2px var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-accent);
  box-shadow: var(--shadow-2);
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  padding: 0 36px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 30px 0 16px 0;
  background: none;
  color: var(--color-primary);
  border-radius: 8px;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--color-primary);
  padding: 14px 8px;
  border-radius: 6px;
  transition: background 0.18s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav .button {
    margin-left: 7px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.93rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding-left: 12px;
    padding-right: 12px;
    height: 62px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    padding: 0 12px;
  }
}

/* --- BUTTONS --- */
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 7px;
  border: none;
  min-width: 120px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
}
.button.primary,
a.button.primary {
  background: var(--color-primary);
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: #0a2237;
  box-shadow: 0 4px 12px rgba(19,58,92,0.10);
  outline: none;
}
.button.secondary, a.button.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.button.secondary:hover, .button.secondary:focus {
  background: #ffd769;
  color: var(--color-primary);
  outline: none;
}
.button:disabled {
  opacity: .55;
  pointer-events: none;
}

/* --- HERO & CALL-TO-ACTION SECTIONS --- */
.hero {
  background: var(--color-neutral);
  padding: 72px 0 48px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
  max-width: 680px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-muted);
  margin-bottom: 20px;
}
.cta {
  background: var(--color-neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
  margin-bottom: 70px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* --- CARDS, FEATURE GRID, CARDS, ETC. --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}
.card:hover {
  box-shadow: var(--shadow-2);
  transition: box-shadow 0.18s;
}

/* --- FEATURE GRID / ITEM --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- PRICING TABLE --- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0 20px 0;
}
.plan {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 34px 26px 26px 26px;
  min-width: 260px;
  max-width: 330px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border .18s;
  border: 1px solid #f4f4f7;
}
.plan:hover {
  box-shadow: var(--shadow-2);
  border: 1.5px solid var(--color-secondary);
}
.plan h2 {
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.plan p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 13px;
}
.plan ul {
  margin-bottom: 18px;
}
.plan ul li {
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 1rem;
  list-style-position: inside;
}

/* --- TABLE STYLES --- */
.comparison table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 16px 0;
}
.comparison th, .comparison td {
  padding: 15px 8px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  font-size: 1rem;
}
.comparison th {
  background: #f9f9fb;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.comparison tr td:first-child {
  text-align: left;
  color: var(--color-muted);
  font-weight: 500;
}
.comparison tr:nth-child(even) {
  background: #fafbfc;
}

/* --- PROCESS STEPS (for how-it-works) --- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 28px;
  margin-top: 18px;
}
.process-steps li {
  flex: 1 1 190px;
  min-width: 190px;
  max-width: 265px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 23px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .16s;
}
.process-steps li:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.process-steps img {
  width: 32px;
  height: 32px;
  margin-bottom: 3px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 44px 0;
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 32px 26px 24px 26px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  transition: box-shadow .20s, transform .20s;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.15rem;
}
.testimonial-card strong {
  font-weight: 600;
  color: var(--color-muted);
  font-size: 1rem;
  letter-spacing: 0.1px;
}
.testimonial-card:hover {
  box-shadow: 0 0 26px rgba(19,58,92,.11);
  transform: translateY(-4px);
}

/* --- BLOG TEASERS/LISTS & CATEGORIES --- */
.blog-list .post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.blog-list article {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 18px 20px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, transform .18s;
}
.blog-list article:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.blog-list article h3 {
  font-size: 1.18rem;
}
.blog-list article a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 6px;
  align-self: flex-start;
  transition: color 0.14s;
}
.blog-list article a:hover {
  color: var(--color-primary);
}
.categories {
  margin-top: 32px;
  background: #fafbfc;
  border-radius: 10px;
  padding: 20px 18px 16px 18px;
  box-shadow: var(--shadow-1);
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.categories li {
  background: #fff;
  color: var(--color-primary);
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid #e8e8ea;
  font-size: 0.96rem;
  font-weight: 500;
}

/* --- FAQ (DL) STYLES --- */
.faq dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 18px;
  font-size: 1.1rem;
}
.faq dd {
  margin-left: 0;
  color: var(--color-muted);
  margin-bottom: 12px;
  font-size: 1rem;
}

/* --- ABOUT: NUMBERS SECTION --- */
.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.numbers p {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
  padding: 18px 24px;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

/* --- LOCATION MAP (kontakt) --- */
.location-map {
  margin-top: 24px;
  background: #fafbfc;
  border-radius: var(--radius);
  padding: 16px 14px 10px 16px;
  box-shadow: var(--shadow-1);
}

/* --- GENERIC FLEX UTILS --- */
.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;
}

/* --- COMMON SPACING & ALIGNMENT --- */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
.text-section {
  margin-bottom: 18px;
}
.text-section h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
  margin-top: 20px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #e4e8ee;
  box-shadow: var(--shadow-1);
  padding: 48px 0 28px 0;
  margin-top: 38px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-branding {
  flex:  1 1 100px;
}
.footer-nav {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: var(--color-muted);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
  margin-bottom: 4px;
}
.footer-nav a:hover {
  color: var(--color-primary);
}
.footer-contact {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-text);
  margin-bottom: 18px;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-newsletter {
  flex: 3 1 220px;
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
  padding: 18px 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 340px;
  margin-bottom: 8px;
}
.footer-newsletter h3 {
  font-size: 1.1rem;
}
.footer-newsletter a.button.secondary {
  margin-top: 9px;
}
.footer-social {
  flex: 1 1 80px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
}
.footer-social img {
  width: 26px;
  height: 26px;
  filter: grayscale(0.2) opacity(0.82);
  transition: filter 0.13s;
}
.footer-social a:hover img {
  filter: grayscale(0) opacity(1);
}

/* --- CONFIRMATION MESSAGE (THANK YOU) --- */
.confirmation-message {
  background: #fafbfc;
  border-radius: 10px;
  padding: 20px 18px 10px 18px;
  box-shadow: var(--shadow-1);
  font-size: 1.07rem;
  margin-bottom: 24px;
}

/* --- Cookie Consent Banner & Modal --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 100vw;
  background: #f8fafc;
  color: var(--color-text);
  padding: 24px 20px 24px 20px;
  box-shadow: 0 -4px 16px rgba(19,58,92,0.06);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
  transform: translateY(200%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1), opacity 0.33s;
}
.cookie-consent-banner.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner .button {
  min-width: 0;
  padding: 8px 22px;
}
.cookie-settings-btn {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid #e4e8ee;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #e4e8ee;
  color: var(--color-primary);
  outline: none;
}

/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(19,58,92,0.22);
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 40px rgba(19,58,92,0.18);
  max-width: 400px;
  width: 92vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: fadein 0.3s cubic-bezier(0.55,0,0.24,1);
  position: relative;
}
@keyframes fadein {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-weight: 500;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--color-primary);
}
.cookie-modal .category input[type=checkbox],
.cookie-modal .category input[type=radio] {
  accent-color: var(--color-primary);
  width: 1.15em;
  height: 1.15em;
}
.cookie-modal .button {
  margin-top: 20px;
  padding: 8px 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 16px;
  background: transparent;
  color: var(--color-muted);
  border: none;
  font-size: 2rem;
  line-height: 1;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #e4e8ee;
  color: var(--color-primary);
  outline: none;
}
.cookie-modal .essential-info {
  font-size: 0.93rem;
  color: var(--color-muted);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 1050px;
  }
  .feature-grid li, .plan, .testimonial-card {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
  .footer-branding,.footer-newsletter {
    min-width: 130px;
  }
  .footer-contact {
    min-width: 105px;
  }
  .footer-newsletter {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero {
    padding: 36px 0 28px 0;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 16px;
    padding: 0 2px;
  }
  .feature-grid {
    gap: 16px;
  }
  .feature-grid li, .plan, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .testimonial-list, .blog-list .post-previews {
    flex-direction: column;
    gap: 12px;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .numbers {
    flex-direction: column;
    gap: 11px;
  }
  .cta {
    padding: 30px 0;
  }
  .cta .content-wrapper {
    text-align: left;
    align-items: flex-start;
    gap: 10px;
  }
  .pricing-table {
    flex-direction: column;
    gap: 12px;
  }
  .process-steps {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 6px 16px 6px;
    border-radius: 12px 12px 0 0;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  .footer-branding img {
    height: 30px;
  }
  .blog-list .categories, .footer-newsletter {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 450px) {
  .plan {
    padding: 20px 7px 19px 7px;
  }
  .testimonial-card {
    padding: 18px 7px 14px 10px;
  }
  .cookie-modal {
    padding: 16px 5px 14px 7px;
  }
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
a,
.button,
.plan,
.feature-grid li,
.card,
.testimonial-card,
footer-nav a,
.blog-list article {
  transition: color .16s, background .18s, box-shadow .18s, transform .14s;
}

/* ---- Z-INDEX LAYERING ---- */
header { z-index: 50; }
.mobile-menu { z-index: 120; }
.cookie-consent-banner { z-index: 200; }
.cookie-modal-overlay { z-index: 210; }

/* ---- UTILITIES/HELPERS --- */
.hide { display: none !important; }
.bg-neutral { background: #fafbfc; }
.text-center { text-align: center !important; }

/* --- END --- */
