/* ====================================================
   DuskFlame Porównania – ELEGANT CLASSIC STYLE CSS
   Brand: Timeless serif, muted, clean classic with elegant touch
   Author: Senior CSS Developer
   ==================================================== */

/* ==== CSS RESET & BASE NORMALIZATION ==== */
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 {
  height: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #22243D;
  background-color: #F7F7F6;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #224488;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6AD00;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 16px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: #1b233b;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 32px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 28px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 500;
}
p, .text-section > p, .content-wrapper > p, .confirmation-message {
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1rem;
  color: #2e3148;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #224488;
}
em {
  font-style: italic;
}

/* VISUAL HIERARCHY / ELEGANT SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,35,58,0.06);
  transition: box-shadow 0.25s;
}
@media (max-width: 900px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

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

.text-section {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CARD(s) & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,35,58,0.10);
  padding: 24px 20px;
  flex: 1 1 340px;
  min-width: 260px;
  transition: box-shadow 0.25s, transform 0.25s;
  z-index: 1;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 18px rgba(30,35,58,0.16);
  transform: translateY(-2px);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.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: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8F9FA;
  border-radius: 12px;
  min-width: 210px;
  padding: 24px 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1px solid #E7E9F2;
  box-shadow: 0 1px 5px rgba(34,32,48,0.02);
}
.feature-item img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-bottom: 6px;
}
.feature-item h3 {
  margin-bottom: 8px;
  color: #1b233b;
}
.feature-item:hover {
  box-shadow: 0 3px 16px rgba(34,68,136,0.10);
  border-color: #F6AD00;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .features-grid {
    gap: 16px;
    flex-direction: column;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 20px 26px;
  margin-bottom: 20px;
  background: #F8F9FC;
  border-left: 4px solid #224488;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px rgba(34,68,136,0.07);
  color: #212341;
  transition: box-shadow 0.18s, border-color 0.18s;
  min-width: 225px;
  max-width: 510px;
}
.testimonial-card strong {
  color: #224488;
  letter-spacing: 0.01em;
  font-size: 1.07rem;
}
.testimonial-card:hover {
  border-color: #F6AD00;
  box-shadow: 0 6px 22px rgba(34,68,136,0.13);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    gap: 16px;
    flex-direction: column;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

.review-summary {
  font-size: 1.07rem;
  margin-top: 10px;
  color: #2e3148;
  background: #f3f4f8;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 0.5px 3px rgba(41,45,88,0.06);
  display: flex;
  align-items: center;
}
.review-summary strong {
  font-size: 1.12rem;
  color: #F6AD00;
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
  align-items: center;
  justify-content: flex-start;
}
.logo-wall img {
  height: 44px;
}

/* ==== NAVIGATION (DESKTOP & MOBILE) ==== */
header {
  background: #fff;
  border-bottom: 1px solid #e8e9f2;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(23,36,62,0.04);
  position: sticky;
  top: 0;
  z-index: 890;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  justify-content: space-between;
}
.logo-link img {
  height: 46px;
  width: auto;
  display: block;
  margin-right: 32px;
}
@media (max-width: 600px) {
  .logo-link img {
    height: 34px;
    margin-right: 16px;
  }
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex: 1 1 0px;
}
.main-nav a {
  font-family: 'Georgia','Times New Roman',serif;
  color: #224488;
  font-size: 1.03rem;
  font-weight: 500;
  position: relative;
  padding: 4px 1px;
  transition: color 0.17s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: #F6AD00;
  width: 0;
  margin-top: 2px;
  transition: width 0.23s;
  border-radius: 1.5px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F6AD00;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 90%;
}
@media (max-width: 990px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
}

/* BUTTONS */
.btn, .btn-primary {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.06rem;
  border-radius: 28px;
  padding: 11px 30px;
  font-weight: 700;
  cursor: pointer;
  background: #224488;
  color: #fff;
  border: none;
  box-shadow: 0 1px 7px rgba(34,68,136,0.13);
  margin: 0 6px 0 0;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.14s, color 0.13s, transform 0.17s;
  line-height: 1.2;
  text-align: center;
}
.btn:hover, .btn-primary:hover, .btn:focus, .btn-primary:focus {
  background: #F6AD00;
  color: #224488;
  box-shadow: 0 3px 18px rgba(246,173,0,0.09);
  transform: translateY(-1.5px) scale(1.015);
}
.btn[disabled], .btn-primary[disabled] {
  background: #eee;
  color: #ccc;
  pointer-events: none;
}

/* ==== HERO ==== */
.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f7f7f6 60%, #f4f7fb 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(35,42,66,0.08);
  margin-bottom: 32px;
  padding: 40px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #224488;
  font-size: 2.3rem;
  margin-bottom: 24px;
}
.hero p {
  color: #2e3148;
  font-size: 1.1rem;
  margin-bottom: 22px;
  max-width: 415px;
}
@media (max-width: 600px) {
  .hero {
    padding: 26px 0 24px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 0.97rem;
    margin-bottom: 18px;
  }
}

/* ==== LISTS ==== */
.service-list, .advantage-list, .offers-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 18px;
  list-style-type: none;
  background: none;
}
.service-list li, .advantage-list li, .offers-list li {
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #eceef3;
  padding: 18px 16px;
  margin-bottom: 6px;
  font-size: 1.01rem;
  color: #232342;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}
.advantage-list img {
  height: 30px;
  margin-right: 6px;
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f8f9fa;
  border-radius: 11px;
  border: 1px solid #ebecf5;
  box-shadow: 0 0.5px 7px rgba(23,44,88,0.055);
  padding: 18px 20px 16px 20px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: border-color 0.17s, box-shadow 0.15s;
}
.faq-item h3, .faq-item h4 {
  cursor: pointer;
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #224488;
}
.faq-item.open, .faq-item:focus-within {
  border-color: #F6AD00;
  box-shadow: 0 2px 16px rgba(246,173,0,0.09);
}
.faq-answer {
  display: none;
  color: #363956;
  font-size: 0.99rem;
  margin-top: 0;
  margin-bottom: 0;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInFaq 0.32s cubic-bezier(.3,0,.33,1.0);
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.submit-question {
  margin-top: 18px;
  font-size: 1.09rem;
  color: #224488;
}

/* ==== ARTICLES/BLOG ===== */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.articles-grid article {
  flex: 1 1 310px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1-2px 8px rgba(39,42,68,0.05);
  padding: 30px 20px 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, border-color 0.14s;
  border: 1px solid #edeff5;
  min-width: 230px;
}
.articles-grid article:hover {
  box-shadow: 0 8px 32px rgba(34,68,136,0.12);
  border-color: #F6AD00;
}
.articles-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #224488;
}
.articles-grid a {
  color: #224488;
  font-weight: 600;
  font-size: 1.03rem;
  margin-top: 12px;
  display: inline-block;
  transition: color 0.18s;
}
.articles-grid a:hover {
  color: #F6AD00;
}

.categories-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  margin-bottom: 12px;
  color: #224488;
}
.categories-filter a {
  color: #454680;
  font-weight: 500;
  padding: 0 4px;
}
.categories-filter a:hover,
.categories-filter a:focus {
  color: #F6AD00;
}

.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.search-bar input {
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #dde0ea;
  padding: 7px 13px;
  outline: none;
  background: #f7f8fb;
  color: #232341;
  transition: border-color 0.15s;
}
.search-bar input:focus {
  border-color: #224488;
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F8F9FA;
  border-radius: 10px;
  padding: 16px 19px;
  box-shadow: 0 1px 10px rgba(34,68,136,0.04);
  font-size: 1.01rem;
}

/* === FOOTER === */
footer {
  background: #f7f7f6;
  border-top: 1px solid #e9eaea;
  color: #45497c;
  font-size: 0.97rem;
  padding: 34px 0 18px 0;
  margin-top: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #224488;
  opacity: 0.86;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.15s;
}
.footer-nav a:hover {
  color: #F6AD00;
  opacity: 1;
}
footer .contact-short {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.98rem;
}
footer .contact-short img {
  height: 18px;
  width: 18px;
  margin-right: 2px;
}
.footer-copy {
  color: #797c8f;
  opacity: 0.64;
  font-size: 0.93rem;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .footer-nav {
    gap: 10px;
    font-size: 0.97rem;
  }
  .footer-copy {
    margin-top: 18px;
    font-size: 0.91rem;
  }
  footer .contact-short {
    font-size: 0.91rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 11px;
  }
}

/* ===== MOBILE MENU (BURGER) ===== */
.mobile-menu-toggle {
  background: #fff;
  color: #224488;
  border: 2px solid #224488;
  font-size: 2rem;
  padding: 6px 14px 2px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 4px;
  z-index: 1002;
  transition: background 0.17s, color 0.17s, border-color 0.23s;
  display: none;
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #f6ad00;
  color: #fff;
  border-color: #f6ad00;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,44,72,0.12);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2003;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.36s cubic-bezier(.7,.2,.25,1.03);
}
.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
}
.mobile-nav {
  background: #fff;
  min-width: 73vw;
  max-width: 380px;
  min-height: 100vh;
  box-shadow: -4px 0 34px rgba(34,68,136,0.14);
  padding: 48px 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(110%);
  transition: transform 0.37s cubic-bezier(.7,.2,.25,1.03);
  z-index: 2010;
}
.mobile-menu.active .mobile-nav {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F6AD00;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 7px;
  padding: 8px 15px 4px 15px;
  cursor: pointer;
  top: 14px;
  right: 35px;
  position: absolute;
  z-index: 2011;
  opacity: 0.99;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #224488;
  color: #fff;
}
.mobile-nav a {
  font-family: 'Georgia','Times New Roman',serif;
  color: #224488;
  font-size: 1.17rem;
  padding: 12px 0;
  font-weight: 600;
  transition: color 0.18s;
  border-bottom: 1px solid #f1f2f8;
  cursor: pointer;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6AD00;
}
@media (max-width: 600px) {
  .mobile-nav {
    min-width: 92vw;
    padding: 40px 12px 32px 12px;
    font-size: 1.03rem;
  }
  .mobile-menu-close {
    top: 11px;
    right: 14px;
  }
}

/* ===== COOKIE CONSENT BANNER + MODAL ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 4000;
  background: #fffbe4;
  border-top: 1.5px solid #f6ad00;
  box-shadow: 0 -2px 14px rgba(46,34,10,0.07);
  padding: 22px 22px 16px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 1rem;
  color: #1b233b;
  transition: transform 0.44s cubic-bezier(.6,.2,.23,1.03), opacity 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1 1 280px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn,
.cookie-accept-btn,
.cookie-reject-btn,
.cookie-settings-btn {
  font-family: 'Montserrat',Georgia,serif;
  font-size: 1.02rem;
  border-radius: 22px;
  border: none;
  padding: 8px 21px;
  margin-right: 2px;
  font-weight: 600;
  cursor: pointer;
  background: #224488;
  color: #fff;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0 1px 3px rgba(34,68,136,0.07);
  outline: none;
}
.cookie-btn:last-child, .cookie-accept-btn:last-child, .cookie-reject-btn:last-child, .cookie-settings-btn:last-child {
  margin-right: 0;
}
.cookie-btn:hover, .cookie-accept-btn:hover, .cookie-settings-btn:hover {
  background: #F6AD00;
  color: #224488;
}
.cookie-reject-btn {
  background: #eaecef;
  color: #224488;
}
.cookie-reject-btn:hover,
.cookie-reject-btn:focus {
  background: #bbbccb;
}
.cookie-settings-btn {
  background: #f3f4f6;
  color: #224488;
  border: 1.3px solid #d4d9ed;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #F6AD00;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 9px 15px 9px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    gap: 9px;
    justify-content: flex-start;
  }
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 52, 72, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 22px 32px;
  min-width: 340px;
  max-width: 100vw;
  box-shadow: 0 4px 32px rgba(34,68,136,0.13);
  position: relative;
  animation: cookieModalIn 0.39s cubic-bezier(.4,0,.25,1.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(0.98); opacity: 0.12; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 1.7rem;
  color: #b0b7c7;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #f6ad00;
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  margin-bottom: 0;
  user-select: none;
}
.cookie-category input[type='checkbox'] {
  accent-color: #224488;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-category .always-on {
  color: #b0b4ba;
  font-size: 0.97rem;
  margin-left: 9px;
}
.cookie-modal-btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal-btns .cookie-accept-btn {
  background: #224488;
  color: #fff;
}
.cookie-modal-btns .cookie-accept-btn:hover {
  background: #F6AD00;
  color: #224488;
}
.cookie-modal-btns .cookie-reject-btn {
  background: #eaecef;
  color: #224488;
}
.cookie-modal-btns .cookie-reject-btn:hover {
  background: #bbbccb;
}
@media (max-width: 520px) {
  .cookie-modal-dialog {
    min-width: 0;
    max-width: 95vw;
    padding: 27px 8px 14px 12px;
  }
  .cookie-modal-close {
    top: 6px;
    right: 8px;
  }
}

/* ====== RESPONSIVE LAYOUT BREAKPOINTS ====== */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .content-grid,
  .card-container,
  .testimonial-slider,
  .features-grid,
  .articles-grid {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 700px) {
  .card, .feature-item, .testimonial-card, .articles-grid article {
    min-width: 142px;
    max-width: 100%;
    padding: 16px 8px;
  }
  .section {
    padding: 24px 3px;
    margin-bottom: 18px;
    border-radius: 8px;
  }
}
@media (max-width: 520px) {
  .card, .testimonial-card {
    padding: 10px 3px;
    min-width: 92px;
  }
  h1, .hero h1 {
    font-size: 1.14rem;
    letter-spacing: 0.01em;
  }
  h2 {
    font-size: 1.02rem;
    margin-bottom: 8px;
  }
  .logo-wall {
    gap: 12px;
    margin-top: 10px;
  }
}

/* Misc util */
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ===== ACCESSIBILITY ===== */
:focus { outline: 2px solid #f6ad00; outline-offset: 2px; }
[aria-live] { outline: none !important; }

/* ===== PRINT ===== */
@media print {
  .btn, .main-nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
