/* RESET & BASELINE --------------- */
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #F7F9FA;
  color: #2C4463;
  font-family: 'Roboto', Arial, sans-serif;
  word-break: break-word;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* -------- FONTS (RETRO STYLE) ------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

:root {
  --primary: #2C4463;
  --secondary: #7AA6C2;
  --accent: #F7F9FA;
  --retro-yellow: #F8CF6B;
  --retro-red: #C8544E;
  --retro-green: #83A978;
  --retro-blue: #41729F;
  --retro-bg1: #FAEEE0;
  --retro-bg2: #F6F2D4;
  --retro-brown: #996C45;
  --dark: #172233;
}

/* ------------ RETRO PATTERN BG Example -------------- */
body {
  background:
    repeating-linear-gradient(135deg, var(--retro-bg2), var(--retro-bg2) 30px, var(--retro-bg1) 31px, var(--retro-bg1) 60px),
    var(--accent);
}


/* --------- LAYOUT CONTAINERS --------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}

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

/* --------- TYPOGRAPHY HIERARCHY -------------- */
h1, .main-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  text-shadow: 2px 2px 0px var(--retro-yellow), 4px 4px 0px rgba(44,68,99,0.03);
}
@media (min-width: 768px) {
  h1, .main-title {
    font-size: 3rem;
  }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: var(--retro-red);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 0px var(--retro-yellow);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--retro-blue);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--retro-brown);
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark);
}
p {
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  font-weight: bold;
}

/* ----------- GENERAL LINKS & INTERACTIONS ---------- */
a {
  color: var(--retro-red);
  text-decoration: underline dotted var(--retro-yellow);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--retro-blue);
  outline: none;
  text-decoration: underline solid var(--retro-red);
}

/* Classic retro underline, optionally on nav links */
.main-nav > a, .footer-nav > a,
.mobile-nav > a {
  text-decoration: none;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 1.1rem;
  margin-right: 24px;
  position: relative;
  transition: color .2s;
}
.main-nav > a:last-child, .footer-nav > a:last-child {
  margin-right: 0;
}
.main-nav > a::after, .footer-nav > a::after, .mobile-nav > a::after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 3px double var(--retro-yellow);
  margin-top: 4px;
  opacity: 0;
  transition: opacity .2s;
}
.main-nav > a:hover::after, .main-nav > a:focus::after {
  opacity: 1;
}
.footer-nav > a:hover, .footer-nav > a:focus {
  color: var(--retro-blue);
}

/* ------------------ NAVIGATION & HEADER ------------------- */
header {
  background: var(--retro-yellow);
  box-shadow: 0 2px 8px rgba(51,30,5,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 950;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--retro-red);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 10px 34px;
  border: none;
  box-shadow: 0 3px 16px -8px var(--retro-brown);
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 16px;
  transition: background 0.18s, box-shadow .2s, transform .16s;
  text-align: center;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-red) !important;
  box-shadow: 0 7px 28px -6px var(--retro-blue);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  outline: none;
}

/* ----------- MOBILE MENU ------------ */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 18px;
  z-index: 1002;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 85vw; max-width: 410px;
  background: var(--retro-bg2);
  box-shadow: 8px 0 24px -5px rgba(44,68,99,0.16);
  z-index: 1100;
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.85,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 22px 42px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--retro-red);
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 4px 16px;
  border-radius: 6px;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--retro-yellow);
  transition: color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
  outline: none;
}

/* Hide menu on desktop */
@media (min-width: 1020px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  .main-nav {
    display: flex !important;
    position: static;
    flex-wrap: wrap;
  }
}
@media (max-width: 1020px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
  }
    header .cta-btn {
      display: none;
    }
  header .container {
    gap: 0;
    padding-right: 0;
  }
}

/* Mobile overlay when menu is open */
.mobile-menu.open::before {
  content: '';
  position: fixed; left: 100%; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,68,99,0.08);
  z-index: 1099;
}

/* ------- FOOTER --------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0 0 18px 0;
}
footer .container {
  padding-top: 30px;
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
footer .brand-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 5px #0001);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: #fff;
  letter-spacing: 1px;
  font-size: 1rem;
  position: relative;
}
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
  color: #fff;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: brightness(0.97) grayscale(0.23);
}
.footer-rights {
  font-size: .93rem;
  margin-top: 12px;
  color: var(--accent);
}

@media (min-width: 700px) {
  footer .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
  }
}


/* ----------- SECTIONS & FLEX LAYOUTS --------------- */
.features, .feature-grid, .feature-list, .feature-icons, .blog-list, .categories, .category-list, .why-us-list, .text-image-section, .usps, .client-quotes, .advice-list, .tip-summary ul, .contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features .feature-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 320px;
  background: var(--retro-bg2);
  border-radius: 14px;
  box-shadow: 0 2px 10px -4px var(--primary);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .2s, transform .16s;
  border: 2px solid var(--retro-yellow);
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px -3px var(--retro-blue), 0 0 0px 2px var(--retro-brown);
  transform: scale(1.03) rotate(-1.5deg);
  z-index: 2;
}
.feature-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
}

/* List with retro circle bullets */
ul.usps, ul.feature-list, ul.category-list, .advice-list, .why-us-list {
  list-style: none;
}
ul.usps li, ul.feature-list li, ul.category-list li, .advice-list li, .why-us-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  border-radius: 24px;
  background: var(--retro-bg2);
  padding: 12px 20px;
  margin-bottom: 10px;
  box-shadow: 0 1px 7px -2px var(--retro-blue);
}
ul.usps li img, ul.feature-list li img, .feature-icons img {
  height: 22px; width: 22px;
  flex-shrink: 0;
}
/* Icons List on Kontakt and Features */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.feature-icons img {
  width: 40px; height: 40px;
  margin-bottom: 0;
}


/* ----------- CARDS & CONTENT PRESENTATION ------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--retro-bg2);
  box-shadow: 0 2px 12px -2px var(--primary);
  padding: 28px 18px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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, .feature-grid, .features .feature-grid, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}


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

/* Blog-style card list (inspiracje-i-porady) */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.blog-list article {
  background: var(--retro-bg1);
  padding: 20px 22px;
  border-radius: 13px;
  border: 2px dashed var(--retro-yellow);
  box-shadow: 0 1px 8px -3px var(--retro-blue);
  transition: background .18s;
}
.blog-list article:hover {
  background: var(--retro-yellow);
}
.tip-summary h3 {
  font-size: 1.2rem;
  color: var(--retro-red);
  margin-bottom: 8px;
}
.tip-summary ul {
  gap: 10px;
}
.tip-summary li {
  background: var(--retro-bg2);
  padding: 9px 14px;
  border-radius: 9px;
}

/* ---------- CTA SECTION --------------- */
.cta {
  background: var(--retro-red);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 40px -8px var(--retro-yellow);
  padding: 42px 20px;
  margin-bottom: 54px;
}
.cta h2, .cta h1 {
  color: #fff;
  text-shadow: 1px 2px 0px var(--retro-yellow);
}
.cta p {
  color: #fff;
  font-size: 1.16rem;
}

/* ------ HERO ------------------------ */
.hero {
  background-color: var(--retro-yellow);
  background-image: url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="8" height="8" fill="%23C8544E"/%3E%3C/svg%3E');
  background-size: 80px 80px;
  background-repeat: repeat;
  position: relative;
}
.hero .container {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 26px;
  padding-bottom: 36px;
}
.hero h1 {
  color: var(--retro-red);
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero p {
  color: var(--dark);
  font-size: 1.1rem;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* --------------- TESTIMONIALS --------------- */
.testimonials {
  background: var(--retro-blue);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 48px -12px var(--retro-brown);
  padding: 42px 18px 30px 18px;
  margin-bottom: 50px;
}
.testimonials h1, .testimonials h2 {
  color: #fff;
  text-shadow: 1px 2px 0 var(--primary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  color: var(--primary);
  border-radius: 12px;
  box-shadow: 0 2px 24px -6px var(--retro-brown);
  padding: 20px 34px 16px 16px;
  margin-bottom: 20px;
  min-width: 230px;
  border-left: 6px solid var(--retro-yellow);
  position: relative;
  z-index: 1;
  font-size: 1.04rem;
}
.testimonial-card .stars {
  font-size: 1.2rem;
  color: var(--retro-yellow);
  margin-bottom: 4px;
}
.testimonial-card p {
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: .98rem;
  color: var(--retro-red);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.client-quotes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  font-style: italic;
}
.client-quotes li {
  background: var(--retro-bg2);
  color: var(--primary);
  border-left: 4px solid var(--retro-green);
  border-radius: 6px;
  padding: 12px 16px;
}
@media (min-width: 700px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .testimonial-card {
    min-width: 340px;
    max-width: 520px;
  }
}

/* ---------- CONTACT DETAILS SECTION --------------- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.contact-details img {
  height: 22px;
  width: 22px;
}
.contact-details a {
  color: var(--retro-red);
  text-decoration: underline dotted var(--retro-yellow);
  transition: color .16s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--retro-blue);
  outline: none;
}

/* --------- LEGAL/COPY SECTIONS -------- */
.legal {
  background: var(--retro-bg2);
  border-radius: 22px;
  box-shadow: 0 2px 30px -10px var(--retro-blue);
  margin-bottom: 48px;
  padding: 42px 18px 32px 18px;
}
.legal h1, .legal h2 {
  color: var(--retro-red);
  margin: 14px 0 10px 0;
}
.legal ul {
  margin: 8px 0 14px 0;
}
.legal li {
  padding: 5px 0 7px 18px;
  list-style: disc inside;
}

/* -------- CONFIRMATION PAGE -------- */
.confirmation {
  background: var(--retro-bg1);
  padding: 58px 20px 44px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 24px -8px var(--retro-brown);
  margin-bottom: 40px;
}
.confirmation h1 {
  color: var(--retro-red);
}

/* ------------------------------------
  RESPONSIVE BEHAVIOR
-------------------------------------*/
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .footer-nav, .footer-contact ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact ul {
    gap: 7px;
  }
  .feature-grid > div {
    flex: 1 1 100%;
  }
  .cta {
    padding: 28px 10px;
  }
  .testimonials { padding: 24px 8px 18px 8px; }
  .legal { padding: 28px 8px 20px 8px; }
}

/* --------- SPACING RULES --------- */
section, .section, .hero, .testimonials, .cta, .legal, .confirmation {
  margin-bottom: 60px;
}

.card-container, .content-grid, .feature-grid, .usps, .feature-list, .feature-icons, .category-list, .why-us-list, .blog-list, .advice-list, .tip-summary ul, .client-quotes {
  gap: 20px;
}
.card, .testimonial-card, .feature-grid > div {
  margin-bottom: 20px;
}

/* --------- FOCUS STYLES --------- */
:focus {
  outline: 3px dashed var(--retro-blue) !important;
  outline-offset: 2px;
  z-index: 2;
}

/* ------------------- TRANSITIONS & MICRO-ACTIONS -------------------*/
button, .cta-btn, a {
  transition: background .2s, color .2s, box-shadow .18s, transform .14s, border .15s;
}

/* ------------- COOKIE CONSENT BANNER (BOTTOM FIXED) -------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--retro-yellow);
  box-shadow: 0 -2px 18px -6px var(--retro-brown);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
  padding: 20px 10px 18px 10px;
  gap: 16px;
  font-size: 1rem;
  animation: cbanner-in .5s cubic-bezier(.41,1.19,.79,.99);
}
@keyframes cbanner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 6px;
  color: var(--dark);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  background: var(--retro-red);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .13s, box-shadow .13s;
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary);
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: var(--retro-yellow);
  color: var(--retro-red);
  box-shadow: 0 2px 12px -2px var(--retro-red);
}

/* -------- COOKIE PREF MODAL --------- */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,68,99,0.29);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .2s linear;
}
@keyframes fadein {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal {
  background: var(--retro-bg1);
  border: 3px solid var(--retro-yellow);
  border-radius: 22px;
  box-shadow: 0 8px 36px -8px var(--retro-blue);
  min-width: 320px; max-width: 90vw;
  color: var(--primary);
  padding: 40px 30px 30px 30px;
  position: relative;
  z-index: 4000;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 11px;
  color: var(--retro-red);
}
.cookie-modal ul {
  margin: 16px 0 8px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--retro-yellow);
  padding-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: #ddd;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--retro-red);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  display: block;
  width: 21px; height: 21px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: left .17s cubic-bezier(.71,-0.01,.73,1.03);
  box-shadow: 0 1px 5px #0003;
}
.cookie-modal .cookie-toggle:checked::before {
  left: 21px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px; right: 12px;
  background: none;
  border: none;
  color: var(--retro-red);
  font-size: 1.9rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background .14s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--retro-yellow);
}

/* ------- Miscellaneous ----------- */
ul, ol {
  margin-left: 20px;
}
section ul, .section ul, .feature-grid ul {
  margin-bottom: 15px;
}
ul li + li, ol li + li {
  margin-top: 7px;
}
h1 + p, h2 + p, h2 + ul,
h3 + p, h3 + ul {
  margin-top: 8px;
}


/* ========= RETRO DECOR PATTERNS ========= */
.section::before, .cta::before, .testimonials::before, .legal::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 86px;
  height: 86px;
  background: repeating-linear-gradient(45deg, var(--retro-blue) 0 8px, transparent 8px 16px);
  opacity: 0.12;
  top: -20px;
  left: -20px;
  pointer-events: none;
  border-radius: 25px;
  display: none;
}
@media (min-width: 980px) {
  .section::before, .cta::before, .testimonials::before, .legal::before {
    display: block;
  }
}

/* ========== PRINT ========== */
@media print {
  body, .container, .content-wrapper, .card, .feature-grid > div, .testimonials, .hero, .cta, .legal {
    background: #fff !important;
    color: #2C4463 !important;
    box-shadow: none !important;
  }
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}
