/*--------------------------------------------------------------
   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 { font-size: 100%; scroll-behavior: smooth; }
body {
  line-height: 1.6;
  color: #121212;
  background: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style-position: inside; margin-left: 16px; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  outline: none;
  box-sizing: border-box;
}
button { cursor: pointer; transition: background 0.2s, color 0.2s, box-shadow 0.2s; }

/*--------------------------------------------------------------
   ROOT VARIABLES (for easy color and font swaps)
--------------------------------------------------------------*/
:root {
  --color-primary: #121212;
  --color-primary-alt: #212121;
  --color-secondary: #eaeaea;
  --color-accent: #f5f7fa;
  --color-brand: #213a4e;
  --color-brand-light: #76a3c9;
  --color-white: #fff;
  --color-bg: #f7f8fa;
  --color-card: #fff;
  --color-border: #d4d4d4;
  --color-text-dark: #121212;
  --color-text: #1a1a1a;
  --color-text-med: #4e4e4e;
  --color-link: #213a4e;
  --color-shadow: rgba(0,0,0,0.06);
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 24px rgba(0,0,0,0.12);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/*--------------------------------------------------------------
   CONTAINER & LAYOUTS
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  background: none;
  padding: 0;
  margin: 0 auto;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-card);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}

.testimonials,
.reviews-list,
.team-grid,
.features-grid,
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 20px;
  background: #fafbfc;
  border: 1px solid #ececec;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border-radius: var(--radius);
  min-width: 260px;
  flex: 1 1 280px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--color-text-dark);
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-text-med);
  font-style: italic;
}

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

/*--------------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--color-primary);
  font-weight: 700;
}
h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 22px; }
h2 { font-size: 2.1rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }

body, p, li, ul, ol, span, a, input, button {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text);
}
p {
  font-size: 1.11rem;
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 22px;
  font-size: 1.02rem;
  color: var(--color-text-med);
}
strong { font-weight: bold; }
.cta-btn, .card button, .main-nav a, .footer-menu a, .mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
}

/*--------------------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------------------*/
header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid #e4e7ea;
  box-shadow: 0 2px 8px rgba(33,42,78,0.03);
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #121212;
  opacity: 0.84;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
}
.cta-btn {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 12px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-left: 22px;
  transition: background 0.18s, box-shadow 0.25s, color 0.17s;
  border: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-brand);
  color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  color: var(--color-primary);
  border: none;
  margin-left: 20px;
  cursor: pointer;
  z-index: 101;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #e8eaf0;
}

/*--------------------------------------------------------------
   MOBILE MENU OVERLAY
--------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 94vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px rgba(18,18,18,0.28);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.8,.03,.23,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: transparent;
  color: var(--color-primary);
  margin: 18px 18px 0 0;
  border: none;
  cursor: pointer;
  padding: 0 6px;
  height: 48px;
  width: 48px;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px 0 0 0;
  padding: 0 36px 36px 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #121212;
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
  transition: color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-brand);
  background: #f2f2f7;
  border-radius: 8px;
}
.mobile-menu {
  box-shadow: -2px 0 24px rgba(0,0,0,0.1);
}
.mobile-menu.open {
  box-shadow: -4px 0 32px rgba(33,58,78,0.08);
}

/*--------------------------------------------------------------
   HERO SECTIONS
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #fff, #ececec 100%);
  border-bottom: 1px solid #efefef;
  padding: 48px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.16rem;
  color: var(--color-text-med);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero .cta-btn {
  font-size: 1.07rem;
}

/*--------------------------------------------------------------
   FEATURES & CARDS
--------------------------------------------------------------*/
.features-grid, .brands-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div, .brands-grid > div, .team-grid > div {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 28px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  transition: box-shadow 0.17s, background 0.17s;
  margin-bottom: 20px;
}
.features-grid > div:hover, .brands-grid > div:hover, .team-grid > div:hover {
  background: #f6f8fa;
  box-shadow: var(--shadow-hover);
  z-index: 1;
}
.features-grid img, .brands-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.features-grid h3,
.brands-grid h3,
.team-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-brand);
}
.features-grid p,
.brands-grid p,
.team-grid p {
  color: var(--color-text-med);
  font-size: 1.01rem;
}

/*--------------------------------------------------------------
   FILTER BUTTONS & SEARCH
--------------------------------------------------------------*/
.categories-filter, .filters-row, .brand-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.categories-filter button,
.filters-row button,
.brand-filters button {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid #e2e2e2;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 0.15s, color 0.16s, box-shadow 0.16s;
  margin-bottom: 10px;
}
.categories-filter button:hover,
.filters-row button:hover,
.brand-filters button:hover,
.categories-filter button:focus,
.filters-row button:focus,
.brand-filters button:focus {
  background: var(--color-brand);
  color: var(--color-accent);
  box-shadow: var(--shadow);
}

.review-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fafbfc;
  border: 1px solid #e2e2e2;
  border-radius: var(--radius);
  padding: 8px 18px;
  max-width: 400px;
  margin-bottom: 28px;
}
.review-search input {
  flex: 1 1 0%;
  background: transparent;
  font-size: 1.04rem;
  border: none;
  padding: 8px 0;
}
.review-search img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
}

/*--------------------------------------------------------------
   REVIEWS & ARTICLES
--------------------------------------------------------------*/
.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.reviews-list article {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.reviews-list article:hover {
  box-shadow: var(--shadow-hover);
}
.reviews-list h3 {
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.ratings-overview {
  margin-top: 12px;
  font-weight: 600;
  color: var(--color-brand);
}

.guides-list ul {
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.guides-list .topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.guides-list span {
  background: var(--color-secondary);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.brand-highlights {
  margin-top: 28px;
  margin-bottom: 0;
}
.brand-highlights ul {
  color: var(--color-brand);
  font-size: 1.04rem;
}

.key-features {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 20px;
  margin-bottom: 22px;
}
.key-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f3f4f6;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1.06rem;
  color: #1e1e1e;
}
.key-features img {
  width: 20px; height: 20px; opacity: 0.92;
}

/*--------------------------------------------------------------
   CONTACT SECTION
--------------------------------------------------------------*/
.contact-details {
  margin-bottom: 26px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.06rem;
}
.contact-details img {
  width: 20px; height: 20px;
  margin-right: 10px; vertical-align: middle;
}
.opening-hours {
  margin-bottom: 22px;
}
.map {
  margin-top: 18px;
  width: 100%; max-width: 440px; height: auto;
}

/*--------------------------------------------------------------
   FOOTER
--------------------------------------------------------------*/
footer {
  background: #131313;
  color: #eee;
  padding: 48px 0 22px 0;
  margin-top: 60px;
  border-top: 1px solid #24242a;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer-menu a {
  color: #eaeaea;
  font-weight: 500;
  opacity: 0.94;
  font-size: 1.02rem;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.14s, border 0.14s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--color-brand-light);
  border-bottom: 1px solid var(--color-brand-light);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: #bbb;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 17px; height: 17px; margin-right: 7px; vertical-align: middle;
}
.footer-copy {
  color: #6a6a6e;
  font-size: 0.93rem;
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.01em;
}

/*--------------------------------------------------------------
   COOKIE CONSENT BANNER + MODAL
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818cc;
  z-index: 3000;
  padding: 0;
}
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 32px rgba(33,58,78,0.10), 0 1px 12px #21212111;
  gap: 18px 36px;
  padding: 22px 40px;
  margin: 0 10px 0 10px;
  max-width: 700px;
}
.cookie-banner-text {
  font-size: 1.07rem;
  color: #20212b;
  max-width: 420px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner-btn {
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  transition: box-shadow 0.14s, background 0.15s, color 0.14s;
}
.cookie-banner-btn.accept {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 2px 6px rgba(33,58,78,0.12);
}
.cookie-banner-btn.accept:hover, .cookie-banner-btn.accept:focus {
  background: #000;
}
.cookie-banner-btn.reject {
  background: #ededed;
  color: #121212;
}
.cookie-banner-btn.reject:hover, .cookie-banner-btn.reject:focus {
  background: #cbcbcb;
}
.cookie-banner-btn.settings {
  background: transparent;
  color: var(--color-brand);
  text-decoration: underline;
  padding: 9px 8px;
}
.cookie-banner-btn.settings:hover, .cookie-banner-btn.settings:focus {
  color: #000;
}

/* Cookie MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(14, 14, 18, 0.73);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.6,.13,.47,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 64px rgba(18,18,19,0.17);
  padding: 38px 36px 24px 36px;
  max-width: 408px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInCookieModal 0.33s cubic-bezier(.5,.02,.13,1);
}
@keyframes fadeInCookieModal {
  0% { transform: scale(.93) translateY(16px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-family: var(--font-display);
  color: var(--color-brand);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f8fa;
  padding: 14px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #23242b;
  font-weight: 500;
  margin-right: 8px;
}
.cookie-switch {
  appearance: none;
  width: 38px; height: 20px;
  background: #e3e6e6;
  border-radius: 11px;
  position: relative;
  transition: background 0.15s;
}
.cookie-switch:checked {
  background: var(--color-brand-light);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #0002;
  transition: transform 0.17s;
  transform: translateX(0px);
}
.cookie-switch:checked:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-actions .cookie-banner-btn {
  min-width: 100px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 16px;
  font-size: 1.75rem;
  background: none;
  color: #444;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f5f7fa;
  color: #213a4e;
}

/*--------------------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
--------------------------------------------------------------*/
a, button, .cta-btn, .main-nav a, .footer-menu a, .mobile-nav a {
  transition: color 0.21s, background 0.21s, box-shadow 0.13s;
}
.card, .features-grid > div, .testimonial-card, .brands-grid > div, .reviews-list article {
  transition: box-shadow 0.15s, background 0.15s;
}

/*--------------------------------------------------------------
   RESPONSIVE DESIGN (mobile-first)
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .container { max-width: 940px; }
  .main-nav { gap: 15px; }
  .cta-btn { margin-left: 10px; }
  .features-grid, .brands-grid, .team-grid, .testimonials, .reviews-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  .main-nav { gap: 12px; }
  .features-grid > div, .brands-grid > div, .testimonials, .team-grid > div, .reviews-list article {
    flex: 1 1 100%;
    min-width: 220px;
  }
}
@media (max-width: 820px) {
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 768px) {
  html { font-size: 98%; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .container {
    min-height: 58px;
    gap: 10px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 11px;
  }
  .container {
    max-width: 99vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .features-grid, .brands-grid, .team-grid, .testimonials, .reviews-list {
    flex-direction: column;
    gap: 10px;
  }
  .features-grid > div, .brands-grid > div, .testimonials > div, .team-grid > div, .reviews-list article {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 35px;
  }
  .hero {
    padding-top: 27px;
    padding-bottom: 30px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    padding: 15px 12px;
    gap: 16px 0;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .hero h1 { font-size: 1.44rem; }
  .footer-logo img, .logo img { height: 35px; }
  .cta-btn { font-size: 0.99rem; padding: 9px 19px; }
  .cookie-modal { padding: 18px 10px 16px 10px; }
}
@media (max-width: 480px) {
  .hero p { font-size: 0.95rem; }
  h1 { font-size: 1.15rem; margin-bottom: 14px;}
  h2 { font-size: 1.01rem; margin-bottom: 10px;}
  p, li, span { font-size: 0.97rem; }
  .cookie-banner-inner { padding: 8px 2px; }
}

/* Responsive .text-image-section layout as mandated */
.text-image-section { flex-direction: row; align-items: center; }
@media (max-width: 900px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Ensure ALL flex containers per spec */
.section > .container, .content-wrapper, .footer-menu, .footer-contact, .card-container, .features-grid, .brands-grid, .team-grid, .testimonials, .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*--------------------------------------------------------------
   Z-INDEX UTILITY
--------------------------------------------------------------*/
.mobile-menu,
.cookie-modal-overlay,
.cookie-banner {
  z-index: 5000 !important;
}

/*--------------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------------*/
:focus-visible {
  outline: 2px solid var(--color-brand-light);
  outline-offset: 2px;
}

/*--------------------------------------------------------------
   UTILITIES
--------------------------------------------------------------*/
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 20px; }
.gap-2 { gap: 10px; }
.gap-4 { gap: 20px; }
.bg-dark { background: #1a1a1a; color: #f7f7f7; }
.text-center { text-align: center; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

/*---------------------------------------------------------------
   END OF STYLE.CSS
---------------------------------------------------------------*/
