/* ===============================================
   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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Georgia', serif;
  background: #fafbfd;
  color: #22303c;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  color: #22447A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #60A86F; text-decoration: underline; }
img {
  max-width: 100%;
  border-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================
   CSS VARIABLES & TYPOGRAPHY
============================*/
:root {
  --primary: #22447A;
  --secondary: #60A86F;
  --accent: #F6F8F9;
  --dark: #22303c;
  --text: #222;
  --muted: #8a939a;
  --white: #fff;
  --card-bg: #F5F5F2;
  --shadow: 0 4px 24px rgba(30,38,59,0.07);
  --radius: 12px;
  --border: 1px solid #e5e5ea;

  /* Typo scale */
  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 32px;
  --font-xxl: 48px;
}

body {
  font-family: 'Georgia', Times, 'Times New Roman', serif;
  background: var(--accent);
  color: var(--text);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.14;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 { font-size: var(--font-xxl); margin-bottom: 24px; }
h2 { font-size: var(--font-xl); margin-bottom: 16px; }
h3 { font-size: var(--font-lg); margin-bottom: 10px; }
h4, h5, h6 { font-size: var(--font-md); }
p, li { font-family: 'Georgia', serif; font-size: var(--font-sm); margin-bottom: 8px; color: var(--text); }
strong { font-weight: 700; }
cite { font-style: italic; color: var(--muted); font-size: var(--font-xs); }


/* ===================================
   LAYOUT, CONTAINERS, AND SPACING
==================================== */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

main {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 769px) {
  .section { padding: 64px 40px; }
}


/* =============================
   HEADER / NAVIGATION STYLES
============================== */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(34,68,122,0.05);
  border-bottom: var(--border);
  position: relative;
  z-index: 102;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 24px;
  display: inline-block;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
header nav a {
  font-size: var(--font-sm);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-family: 'Georgia', serif;
  letter-spacing: 0.01em;
  font-weight: 500;
}
header nav a.cta-primary {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Georgia', serif;
  font-size: var(--font-sm);
  font-weight: 700;
  border-radius: 99px;
  padding: 9px 26px;
  box-shadow: 0 2px 8px rgba(96,168,111,0.12);
  margin-left: 16px;
  transition: background 0.18s, color 0.18s;
}
header nav a.cta-primary:hover, .cta-primary:hover {
  background: var(--primary);
  color: var(--white);
}
header nav a:hover {
  background: rgba(34,68,122,0.06);
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.17s;
  z-index: 110;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
}

@media (min-width: 1100px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hide main nav on mobile */
@media (max-width: 1100px) {
  header nav {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 44, 64, 0.6);
  z-index: 1400;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.7,.25,.15,1);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav.mobile-nav {
  background: var(--white);
  min-width: 310px;
  width: 90vw;
  max-width: 400px;
  box-shadow: -6px 0 36px rgba(34,68,122,0.07);
  padding: 48px 36px 36px 26px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,.25,.15,1);
  will-change: transform;
}
.mobile-menu.active nav.mobile-nav {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 34px;
  font-size: 2.3rem;
  color: var(--primary);
  background: none;
  border: none;
  z-index: 1500;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav a {
  display: block;
  color: var(--dark);
  font-size: var(--font-lg);
  padding: 12px 6px;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 450px) {
  .mobile-menu nav.mobile-nav { padding: 38px 8vw 20px 4vw; min-width: 0; }
}


/* =============================
   FOOTER
============================== */
footer {
  background: var(--card-bg);
  border-top: var(--border);
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  padding: 30px 20px;
}
footer .content-wrapper {
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer img[alt="Blaze Dome"] {
  height: 46px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--primary);
  font-size: var(--font-sm);
  margin-bottom: 2px;
  padding: 3px 0;
  transition: color 0.2s;
  font-family: 'Georgia', serif;
}
footer nav a:hover { color: var(--secondary); }
.footer-legal {
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: var(--font-xs);
}
.footer-legal a {
  color: var(--muted);
  margin: 0 2px 0 2px;
  font-size: inherit;
  transition: color 0.16s;
}
.footer-legal a:hover { color: var(--secondary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--muted);
  font-size: var(--font-xs);
}
.footer-contact img {
  width: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ===================================================
    BUTTONS / CTAs / LINKS
==================================================== */
.cta-primary, .cta-contact a.cta-primary, .cta-eco .cta-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--white) !important;
  font-family: 'Georgia', serif;
  font-weight: bold;
  padding: 13px 35px;
  border-radius: 99px;
  font-size: var(--font-md);
  box-shadow: 0 2px 7px rgba(96,168,111,0.13);
  cursor: pointer;
  border: none;
  margin-top: 10px;
  text-align: center;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 13px rgba(34,68,122,0.11);
}
.cta-eco {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ===============================================
    FLEXBOX LAYOUT CONTAINERS ENGINE
================================================ */
.features-grid,
.numbers-grid,
.stats-grid,
.product-list,
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid { justify-content: flex-start; }
.numbers-grid, .stats-grid { justify-content: space-between; }
.product-list, .article-list { justify-content: flex-start; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
  }
  .numbers-grid, .stats-grid, .features-grid, .product-list,
  .article-list, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 22px 20px 22px;
  box-shadow: 0 2px 14px rgba(34,68,122,0.04);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 230px;
  border: var(--border);
  transition: box-shadow 0.16s, border-color 0.17s;
}
.feature-item:hover {
  box-shadow: 0 6px 26px rgba(34,68,122,0.09);
  border-color: var(--secondary);
}
.feature-item img {
  width: 40px; height: 40px; margin-bottom: 6px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  padding: 28px 22px 22px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
}


/* =======================
    PRODUCT ITEMS & TABLES
========================= */
.product-list {
  gap: 24px;
  margin-bottom: 24px;
}
.product-item {
  min-width: 220px;
  flex: 1 1 240px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px 18px 18px 18px;
  box-shadow: 0 2px 14px rgba(34,68,122,0.04);
  border: var(--border);
  transition: box-shadow 0.18s, border-color 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.product-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 26px rgba(34,68,122,0.08);
}
.product-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
}
.product-item h2 {
  font-size: var(--font-lg);
  margin-bottom: 10px;
  color: var(--primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(34,68,122,0.04);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: var(--font-sm);
}
.comparison-table th, .comparison-table td {
  border: var(--border);
  padding: 16px 8px;
  text-align: left;
  vertical-align: middle;
  font-family: 'Georgia', serif;
}
.comparison-table thead th {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.comparison-table tbody td {
  color: var(--dark);
}
.comparison-table tr:nth-child(even) {
  background-color: var(--card-bg);
}

@media (max-width: 700px) {
  .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr {
    display: block;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tr {
    margin-bottom: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 8px;
  }
  .comparison-table td {
    padding: 12px 8px;
    position: relative;
    border: none;
  }
  .comparison-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
  }
}

/* ===================================
    ARTICLE & FAQ (Porady)
=================================== */
.article-list {
  flex-direction: column;
  gap: 20px;
}
.article-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(34,68,122,0.04);
  border: var(--border);
  transition: box-shadow 0.16s, border-color 0.15s;
}
.article-item:hover {
  box-shadow: 0 6px 26px rgba(34,68,122,0.08);
  border-color: var(--secondary);
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}
.faq-item {
  background: var(--accent);
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(34,68,122,0.04);
  padding: 17px 15px 16px 15px;
  border-left: 4px solid var(--secondary);
}
.faq-item h3 {
  margin-bottom: 6px;
  font-size: var(--font-md);
}

/* ====================================
   TIMELINE for About Us page
===================================== */
.timeline {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 1px 7px rgba(34,68,122,0.05);
  padding: 22px 22px 18px 22px;
  margin-bottom: 20px;
  border: var(--border);
}
.timeline h2 {
  margin-bottom: 12px;
  font-size: var(--font-md);
  color: var(--secondary);
}
.timeline ul {
  list-style-position: inside;
  padding-left: 0;
}
.timeline li {
  margin-bottom: 10px;
  padding-left: 2px;
  color: var(--dark);
  font-size: var(--font-sm);
}


/* ===================================
   TESTIMONIALS
=================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 3px 18px rgba(34,68,122,0.07);
  border: var(--border);
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px rgba(34,68,122,0.13);
  border-color: var(--secondary);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 3px;
}
.testimonial-header img {
  height: 22px;
  width: 22px;
}
blockquote {
  font-family: 'Georgia', serif;
  font-size: var(--font-lg);
  color: var(--primary);
  background: var(--accent);
  border-left: 5px solid var(--secondary);
  padding: 11px 18px;
  margin-bottom: 14px;
  border-radius: 6px;
  line-height: 1.4;
}
.testimonial-card cite {
  color: var(--muted);
  font-size: var(--font-xs);
  font-style: normal;
  text-align: right;
  align-self: flex-end;
}

/* Testimonial section readability */
@media (max-width: 700px) {
  .testimonial-card { padding: 16px; }
  blockquote { font-size: 16px; }
}

/* ===================================
  CONTACT & ADDRESS DETAILS
=================================== */
.address-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  background: var(--card-bg);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(34,68,122,0.03);
  border: var(--border);
}
.address-details img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.map-placeholder {
  background: var(--accent);
  color: var(--muted);
  border: var(--border);
  border-radius: 8px;
  font-style: italic;
  font-size: var(--font-xs);
  padding: 10px 16px;
  margin-top: 7px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.info-list p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-list img { width: 18px; margin-right: 8px; }

/* Social links */
ul li {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}
ul li img {
  width: 18px;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .address-details, .info-list { padding: 12px; }
  .map-placeholder { padding: 7px 7px; font-size: 12px; }
}

/* For Thank you Page contact block */
.contact-info {
  margin: 14px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info p {
  font-size: var(--font-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info img { width: 17px; margin-right: 7px; }

/* =============================
   MODALS & COOKIES
============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2400;
  background: var(--white);
  box-shadow: 0 -2px 24px rgba(34,68,122,0.13);
  border-top: var(--border);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  transition: transform 0.38s cubic-bezier(.7,.25,.15,1), opacity 0.23s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
}
.cookie-banner p {
  flex: 1 1 220px;
  font-size: var(--font-sm);
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Georgia', serif;
  font-size: var(--font-sm);
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  margin: 0;
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 7px rgba(34,68,122,0.05);
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
}
.cookie-banner button.reject {
  background: #ebebea;
  color: var(--muted);
}
.cookie-banner button.settings {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 12px; }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2500;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,38,59,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s cubic-bezier(.7,.25,.15,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  padding: 38px 32px 28px 32px;
  border-radius: var(--radius);
  width: 99vw; max-width: 420px;
  box-shadow: 0 6px 36px rgba(34,68,122,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: var(--font-lg);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--secondary);
}
.cookie-category label {
  color: var(--text);
  font-size: var(--font-sm);
  font-family: 'Georgia', serif;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .close-modal {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.8rem; color: var(--primary);
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover { color: var(--secondary); }

@media (max-width: 600px) {
  .cookie-modal { padding: 22px 10px 16px 10px; }
}

/* ============ ECO BADGES & CERTIFICATES =========== */
.certyfikaty, .certificates {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 7px;
  margin-bottom: 3px;
}
.certyfikaty img, .certificates img { height: 34px; width: 34px; }


/* ===========================
   MISC + REUSABLE UTILITIES
============================== */
ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
ol {
  padding-left: 22px;
  margin-bottom: 10px;
}
ul li, ol li { margin-bottom: 8px; line-height: 1.6; }
dt { font-weight: 700; }
dd { margin-left: 15px; margin-bottom: 10px; }
hr { border: none; border-top: 1px solid #e5e5ea; margin: 20px 0; }

/* spacing helpers */
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-20 { gap: 20px !important; }


/* ==========================================
   RESPONSIVE DESIGN
=========================================== */
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  .section { padding: 31px 8px; }
  header .container, footer .container { padding: 21px 8px; }
}
@media (max-width: 700px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  main { padding-top: 6px; padding-bottom: 14px; }
}
@media (max-width: 540px) {
  h1 { font-size: 26px; }
}


/* ==========================================
   ANIMATIONS, TRANSITIONS, MICRO-INTERACTIONS
=========================================== */
section, .card, .feature-item, .article-item, .product-item, .testimonial-card {
  transition: box-shadow 0.17s, border 0.18s, background 0.17s;
}
.cta-primary, button, .mobile-menu-toggle {
  transition: background 0.18s, color 0.19s, box-shadow 0.19s, transform 0.16s;
}
.cta-primary:active, button:active, .mobile-menu-toggle:active {
  transform: scale(0.97);
}
.mobile-menu nav.mobile-nav {
  transition: transform 0.32s cubic-bezier(.7,.25,.15,1);
}
.mobile-menu { transition: opacity 0.28s, pointer-events 0.28s; }
.cookie-banner, .cookie-modal-overlay { transition: opacity 0.29s, transform 0.22s; }

/* ==============================================
   OVERLAY/EXTRAS FOR Z-INDEX SAFETY
=============================================== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 1000; }

/* ============= FOCUS STYLES ============== */
a:focus, button:focus, input:focus, .cta-primary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1.5px;
}

/* =============== VISUAL HIERARCHY ============= */
h1, h2, .cta-primary {
  text-shadow: 0 1px 0 rgb(34,68,122,0.012);
}

/* =============== PRINT STYLES ================ */
@media print {
  body, html { background: #fff !important; color: #111 !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main { padding: 0 !important; }
}
