/* =====================================================
  CSS RESET & BASELINE 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #212733;
  color: #EDEDED;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}
:focus { outline: 2px solid #FA8C24; outline-offset: 2px; }

/* =====================================================
  BRAND FONTS
====================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #EDEDED;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(25,30,38,0.09);
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 10px; }
@media (min-width: 480px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

p, li, span, label, input, textarea, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #EDEDED;
  font-size: 1rem;
}
strong { font-weight: 700; }
blockquote {
  font-style: italic;
  border-left: 4px solid #FA8C24;
  padding-left: 14px;
  color: #262d3b;
  background: #fff;
  margin-bottom: 8px;
}

/* MONOSPACED (urban/industrial accent for small elements) */
code, .code, pre, kbd {
  font-family: 'Fira Mono', 'Inconsolata', monospace;
  color: #FA8C24;
  background: #151a24;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 0.95em;
}

/* =====================================================
  COLOR/INDUSTRIAL PALETTE & ACCENTS
====================================================== */
:root {
  --primary: #1A2849;
  --secondary: #EDEDED;
  --accent: #FA8C24;
  --dark: #262d3b;
  --muted: #333A47;
  --card-bg: #262d3b;
  --input-bg: #212733;
  --shadow: 0 4px 22px rgba(20,24,32, 0.14);
  --shadow-card: 0 3px 12px 0 rgba(15,14,18,0.13);
  --radius-lg: 18px;
  --radius-md: 9px;
  --radius-sm: 5px;
}

/* -----------------------------------------------------
  CONTAINER
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

@media (min-width: 768px) {
  .content-wrapper { gap: 32px; }
  .section { padding: 56px 32px; }
}

/* =====================================================
  HEADER & NAVIGATION
====================================================== */
header {
  background: #1A2849;
  box-shadow: 0 4px 16px rgba(17,21,28,0.10);
  z-index: 50;
}
header .container { flex-direction: row; align-items: center; justify-content: space-between; }
header a img { height: 48px; width: auto; }

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #EDEDED;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* CTA BUTTON */
.cta-btn {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 25px;
  border-radius: var(--radius-md);
  margin-left: 24px;
  box-shadow: 0 3px 24px rgba(250,140,36,0.08);
  transition: background 0.18s, color 0.2s, transform 0.13s;
  border: 1.5px solid #ffbe79;
  letter-spacing: 0.8px;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #d66c03;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 32px rgba(250,140,36,0.14);
}

/* Responsive Header Adjustments */
@media (max-width: 950px) {
  header .container { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-btn  { margin: 16px 0 0 0; align-self: flex-end; }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 10px;
  }
}

/* =====================================================
  MOBILE BURGER MENU (slide overlay)
====================================================== */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 191;
  background: var(--card-bg);
  border-radius: 50%;
  color: #FA8C24;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid #FA8C24;
  box-shadow: 0 2px 7px 0 rgba(30,30,35,.06);
  cursor: pointer;
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FA8C24;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #171d28ee;
  box-shadow: 0 16px 72px 0 #101418ee;
  z-index: 2000;
  transform: translateX(-110%);
  transition: transform 0.40s cubic-bezier(.66,.03,.29,.99);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0); pointer-events: auto;
}
.mobile-menu-close {
  margin: 16px 0 0 16px;
  font-size: 2.1rem;
  color: #FA8C24;
  background: #212733;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #FA8C24;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 60px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 13px 0 13px 12px;
  border-left: 4px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: background 0.13s, color 0.15s, border-color 0.15s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23293a;
  color: #FA8C24;
  border-left: 4px solid #FA8C24;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

/* Layer above everything except modal overlays */
.mobile-menu { z-index: 2300; }
.mobile-menu-toggle { z-index: 2350; }
.mobile-menu-close { z-index: 2360; }

/* =====================================================
  HERO SECTION
====================================================== */
.hero {
  background: linear-gradient(110deg, #212733 68%, #1A2849 96%);
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 38px 0 rgba(20,27,36,0.13);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  min-height: 290px;
}
.hero .container { justify-content: flex-start; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 610px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #FA8C24;
  text-shadow: 0 2px 14px rgba(0,0,0,0.17);
}
.hero p { color: #EDEDED; font-size: 1.15rem; }
.hero .cta-btn { margin-top: 12px; }
@media (min-width: 768px) {
  .hero { min-height: 320px; padding: 20px 0; }
  .hero .content-wrapper { gap: 26px; }
}
@media (max-width: 520px) {
  .hero { min-height: 180px; padding: 20px 0 10px 0; }
  .hero .content-wrapper { max-width: 95vw; }
}

/* =====================================================
  INDUSTRIAL MODERN CARDS & FLEX LAYOUTS
====================================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--card-bg);
  border: 1.2px solid #383f4a;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 26px 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  max-width: 350px;
  transition: box-shadow 0.14s, border 0.12s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 36px 0 #151a24bb;
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.03);
}

.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 {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =====================================================
  FEATURES / BRANDS / REVIEWS / GUIDES SECTIONS
====================================================== */
.features, .brands-list, .feature-grid, .review-cards, .guides, .brand-list-items, .guide-cards, .reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 20px 0 0 0;
}
.features .feature-grid > div, .brands-list > div, .brand-list-items > div, .reviews-list > div, .review-cards > div, .guides > div, .guide-cards > div {
  flex: 1 1 240px;
  background: #242a38;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px 0 rgba(30,29,36,0.11);
  border: 1.1px solid #363c47;
  padding: 20px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border 0.13s, box-shadow 0.11s, transform 0.12s;
  position: relative;
}
.features .feature-grid > div:hover, .brands-list > div:hover, .brand-list-items > div:hover, .guide-cards > div:hover, .reviews-list > div:hover, .review-cards > div:hover {
  border-color: #FA8C24;
  box-shadow: 0 8px 24px 0 #21273399;
  transform: scale(1.015);
}
.features img, .brands-list img, .brand-list-items img {
  width: 40px; height: 40px;
  margin-bottom: 10px;
  filter: grayscale(50%) brightness(1.1) drop-shadow(0 2px 5px #151c2470);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Guides section ul */
.guides ul, .newsletter ul, .popular-topics ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 16px; /* industrial list feel */
}

/* Newsletter section with urban accent */
.newsletter {
  background: #242a38;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 16px 0 #1A284950;
  margin: 30px 0 60px 0;
}
.newsletter h2 {
  color: #FA8C24;
}

/* =====================================================
  TESTIMONIALS, HIGHLIGHTS, AND CARDS
====================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: #262d3b;
  box-shadow: 0 2px 14px 0 #1A284928;
  border-left: 5px solid #FA8C24;
  transition: box-shadow 0.13s, border-color 0.14s;
}
.testimonial-card blockquote {
  border: none;
  background: none;
  color: #242a38;
  margin: 0 0 7px 0;
  padding-left: 0;
}
.testimonial-card .testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FA8C24;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px #1A28494D;
  border-left: 5px solid #cf6600;
}

.reviews-highlight .reviews-list, .review-list .review-cards {
  gap: 30px;
}

/* =====================================================
  SORT/FILTER BAR
====================================================== */
.sort-filter {
  margin-top: 16px;
  font-size: 1rem;
  color: #97a2b8;
  border-top: 1px dashed #383f4a;
  padding-top: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.sort-filter span { font-family: 'Montserrat', Arial, sans-serif; }

.brand-filters, .popular-topics {
  display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
}
.brand-filters h4, .popular-topics h4 { color: #FA8C24; font-size: 1.1rem; }
.brand-filters span, .popular-topics ul li {
  background: #1A2849;
  color: #fff;
  font-size: 0.97rem;
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  margin-right: 6px;
  display: inline-block;
}
.brand-filters span:hover,
.brand-filters span:focus {
  background: #FA8C24;
  color: #fff;
}

/* =====================================================
  ABOUT & CONTACT PAGES
====================================================== */
.values ul {
  margin-left: 17px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.location, .contact {
  background: #212733;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.location strong { color: #FA8C24; }
.contact img, .location img { width: 18px; height: 18px; margin-right: 6px; vertical-align: bottom; }

/* =====================================================
  FOOTER WITH INDUSTRIAL FEEL
====================================================== */
footer {
  background: #1A2849;
  color: #EDEDED;
  padding-top: 36px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 -4px 20px 0 #0e151c33;
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
}
.footer-top a img { height: 38px; width: auto; }
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-nav a {
  color: #EDEDED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  transition: background 0.13s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FA8C24;
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 36px;
}
.footer-bottom img { width: 18px; vertical-align: baseline; margin-right: 6px; }
@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 14px; align-items: flex-start; }
  .footer-nav { gap: 7px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 9px; }
}

/* =====================================================
  FORM ELEMENTS (minimal, no forms in HTML, just base)
====================================================== */
input, textarea, select {
  background: var(--input-bg);
  color: #EDEDED;
  border: 1.2px solid #353c47;
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  margin-bottom: 13px;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.15s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FA8C24;
  background: #262d3b;
}
label { margin-bottom: 8px; display: block; font-size: 1rem; color: #EDEDED; }

/* =====================================================
  COOKIE CONSENT BANNER/MODAL
====================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2990;
  background: #222736;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 32px #1A284930;
  padding: 20px;
  gap: 18px;
  transition: transform 0.35s cubic-bezier(.51,.02,.29,1);
}
.cookie-consent-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: #FA8C24;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 19px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #FA8C2444;
  transition: background 0.13s, color 0.18s, transform 0.12s;
}
.cookie-btn.settings {
  background: #262d3b;
  color: #FA8C24;
  border: 1.2px solid #FA8C24;
  box-shadow: none;
}
.cookie-btn.reject {
  background: #323949;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #cf6600;
  color: #fff;
  transform: scale(1.03);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FA8C24;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1A2849;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  background: #1a212e88;
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 3900;
  display: flex; justify-content: center; align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-backdrop.hidden {opacity: 0; pointer-events: none;}
.cookie-modal {
  background: #242a38;
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 64px #1A2849ee;
  padding: 28px 22px 24px;
  max-width: 420px; width: 95vw;
  z-index: 3980;
  position: relative;
  display: flex; flex-direction: column; gap: 21px;
  animation: popfade .39s cubic-bezier(.6,1.56,.53,.92);
}
@keyframes popfade {
  0% { opacity: 0; transform: scale(0.80) translateY(40px);} 
  70% { opacity: .96; transform: scale(1.06) translateY(-9px);} 
  100% { opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h2 { color: #FA8C24; font-size: 1.2rem; margin-bottom: 8px; }
.cookie-category {
  display: flex; flex-direction: row; align-items: center; gap: 15px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  appearance: none;
  border: 1.2px solid #FA8C24;
  background: #262d3b;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.cookie-category input[type="checkbox"]:checked {
  background: #FA8C24;
  border-color: #FA8C24;
}
.cookie-category label {
  font-size: 1rem;
  color: #fff;
}
.cookie-category.essential label:after {
  content: ' (Zawsze włączone)'; color: #A1A6B0; font-size: .92em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px; justify-content: flex-end;
}
.cookie-modal .cookie-btn { font-size: 0.98rem; padding: 9px 19px; }

/* =====================================================
  UTILS & EFFECTS
====================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #242a38;
}
::-webkit-scrollbar-thumb {
  background: #1A2849;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #FA8C24; }

.shadow-metal {
  box-shadow: 0 8px 28px 2px #282a3265, 0 0 0 1.5px #b8bbc4 inset;
}

/* Spacing! Use for all content wrappers, sections, etc. */
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.gap-30 { gap: 30px !important; }

/* Lists and separators */
ul:not(.footer-nav), ol:not(.footer-nav) {
  list-style-type: disc;
  margin-left: 20px;
  color: #B9BCC0;
}

/* Horizontal rules with metallic accent */
hr {
  border: none;
  height: 2.5px;
  background: linear-gradient(90deg, #262d3b 0, #b8bbc4 85%, #FA8C24 100%);
  border-radius: 3px;
  margin: 20px 0;
}

/* Focus, links, transitions */
a, .cta-btn, button, input, .cookie-btn {
  transition: background 0.18s, color 0.15s, border-color 0.19s, box-shadow 0.16s, transform 0.13s;
}

/* =====================================================
  RESPONSIVE DESIGN / MOBILE-FIRST
====================================================== */
@media (max-width: 900px) {
  .card-container, .content-grid, .features .feature-grid, .brands-list, .brand-list-items, .reviews-list, .review-cards, .guide-cards, .guides {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card { border-radius: var(--radius-md); }
}
@media (max-width: 768px) {
  h1 {font-size: 1.44rem;}
  h2 {font-size:1.17rem;}
  .container {padding: 0 8px;}
  .section {padding: 24px 7px; margin-bottom: 35px;}
  .hero {padding: 10px 0; min-height: 150px;}
  .footer-top {flex-direction: column;gap:8px;}
  .footer-bottom {flex-direction: column;gap:9px;}
  .brands-list, .features .feature-grid, .brand-list-items, .review-cards, .guide-cards, .guides {gap: 13px;}
  .newsletter {padding: 16px 4px;}
}
@media (max-width: 480px) {
  p, li, span, label, input, textarea, blockquote {font-size:0.96rem;}
  h3, h4 {font-size:0.97rem;}
  .cta-btn, .cookie-btn {font-size: 0.96rem; padding: 7px 12px;}
  .card, .features .feature-grid > div, .brands-list > div, .brand-list-items > div, .guide-cards > div, .review-cards > div {padding:13px 9px;}
}

/* =====================================================
  INDUSTRIAL MODERN ACCENTS
====================================================== */
/* metallic accent bar, icon borders, etc. */
.card::before, .features .feature-grid > div::before, .brand-list-items > div::before, .guides > div::before, .guide-cards > div::before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #777, #b8bbc4 88%, #FA8C24 100%);
  border-radius: 2.5px;
  margin-bottom: 14px;
}
.card:hover::before, .features .feature-grid > div:hover::before, .brand-list-items > div:hover::before {
  background: linear-gradient(90deg, #FA8C24 60%, #b8bbc4 100%);
}

/* Hide the accent before for first child in grid if only one exists */
.features .feature-grid>div:first-child:only-child::before {display: none;}

/* =====================================================
  PRINT UTILITIES
====================================================== */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body {background: #fff; color: #212733;}
  .section, .card, .testimonial-card {background: #fff; color: #222; box-shadow: none;}
  a {color: #111; text-decoration: underline;}
}
