/* =========================================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F5F5;
  color: #1B3556;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================================
   BRAND FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&&display=swap');

:root {
  --primary: #1B3556;
  --primary-tint: #294872;
  --secondary: #D3AF37;
  --accent: #F5F5F5;
  --text-color: #1B3556;
  --gray-100: #FAFAFC;
  --gray-200: #E7EBF0;
  --gray-300: #D9DEE7;
  --gray-400: #adb6c6;
  --gray-500: #8894a5;
  --gray-600: #637393;
  --gray-700: #454e5e;
  --danger: #D93025;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, .hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.8px;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
p, ul, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--gray-700);
}
strong {
  color: var(--primary);
  font-weight: 700;
}
.text-section h2 {
  color: var(--primary);
  font-weight: 500;
}
.text-section a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
}
.text-section a:hover {
  color: var(--primary);
}

/* Typography scaling for larger screens */
@media (min-width: 768px) {
  h1, .hero h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
}
@media (min-width: 1024px) {
  h1, .hero h1 { font-size: 3.5rem; }
}


/* =========================================================
   LAYOUT STRUCTURE & CONTAINERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(27, 53, 86, 0.06);
}
.section:last-child {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(27, 53, 86, 0.10);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(27, 53, 86, 0.14);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(27, 53, 86, 0.06);
  margin-bottom: 20px;
  color: var(--primary);
}
.testimonial-card p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grids used on index and vehicles */
.feature-grid,
.benefits-grid,
.value-list,
.impact-stats,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div,
.benefits-grid > div,
.value-list > div,
.impact-stats > div,
.blog-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(27, 53, 86, 0.08);
  flex: 1 1 280px;
  min-width: 220px;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .19s, transform .13s;
}
.feature-grid > div:hover,
.benefits-grid > div:hover,
.value-list > div:hover {
  box-shadow: 0 8px 34px rgba(27,53,86,0.13);
  transform: translateY(-3px) scale(1.01);
}
.impact-stats > div {
  align-items: center;
  text-align: center;
  background: var(--accent);
}
.impact-stats span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  font-size: 1rem;
}
.categories-filter a {
  padding: 4px 12px;
  background: var(--gray-200);
  color: var(--primary);
  border-radius: 16px;
  font-size: 0.92em;
  transition: background .18s, color .18s;
}
.categories-filter a:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(85deg, #f8fafc 70%, var(--primary-tint) 120%);
  padding: 60px 0 40px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1, .hero p {
  color: var(--primary);
}
.hero .cta {
  margin-top: 24px;
}

/* CTAs */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: none;
  outline: none;
  cursor: pointer;
  min-width: 180px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(27,53,86,0.07);
  transition: background .21s, color .18s, transform .13s, box-shadow .15s;
}
.cta.primary {
  background: var(--primary);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(27, 53, 86, 0.13);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Main nav, footer nav, legal nav */
nav, .footer-nav, .footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav a,
.footer-nav a,
.footer-legal a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
  transition: color .17s; 
  padding: 6px 0;
  position: relative;
}
nav a.cta, .footer-nav a.cta { 
  margin-left: 8px;
  font-size: 1.05rem;
}
nav a:hover:not(.cta), .footer-nav a:hover, .footer-legal a:hover {
  color: var(--secondary);
}
nav a.cta.primary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 18px;
  transition: background .18s, color .17s;
}
nav a.cta.primary:hover, nav a.cta.primary:focus {
  background: var(--primary);
  color: #fff;
}


/* =========================================================
   HEADER + LOGO
   ========================================================= */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 25;
  box-shadow: 0 3px 18px rgba(27, 53, 86, 0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 66px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
  margin-right: 22px;
}
.logo img {
  max-height: 48px;
  display: block;
}


/* =========================================================
   MOBILE NAVIGATION (Burger menu)
   ========================================================= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 30;
  min-width: 44px;
  min-height: 44px;
  margin-left: 16px;
  transition: color .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  z-index: 1020;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27, 53, 86, 0.96);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(-102vw);
  transition: transform 0.32s cubic-bezier(.58, .07, .23, 1.02);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  position: absolute;
  right: 23px;
  top: 22px;
  cursor: pointer;
  z-index: 1030;
  transition: color .15s;
}
.mobile-menu .mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 58px 32px 32px 32px;
  min-width: 290px;
  min-height: 100vh;
  box-shadow: -3px 0 30px rgba(27,53,86,0.18);
}
.mobile-nav a {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  color: var(--primary);
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
  margin-left: 0;
  text-align: left;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none!important; }
}
@media (max-width: 1023px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .footer-nav, .footer-legal {
    flex-direction: column;
    gap: 7px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #fff;
  padding: 28px 0 0 0;
  margin-top: 40px;
  box-shadow: 0 -2px 12px rgba(27, 53, 86, 0.04);
  font-size: 15px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--gray-300);
  padding-bottom: 28px;
  margin-bottom: 15px;
}
.footer-nav, .footer-legal {
  flex-direction: column;
  gap: 5px;
}
.footer-contact {
  min-width: 220px;
  max-width: 300px;
  font-size: 1rem;
}
.footer-contact ul{
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
}
.footer-contact li {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--primary);
}
.footer-contact a {
  color: var(--primary);
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 2px;
  opacity: .79;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  width: 31px;
  height: 31px;
  transition: filter .13s, transform .11s;
}
.footer-social a:hover img {
  filter: brightness(1.3) drop-shadow(0 0 7px var(--secondary));
  transform: scale(1.1) rotate(-3deg);
}
.footer-bottom {
  display: flex;
  justify-content: flex-start;
  padding-top: 6px;
  color: var(--gray-500);
  font-size: 0.96rem;
  margin-bottom: 6px;
}

/* =========================================================
   FORMS, MAPS, CONTACT DETAILS
   ========================================================= */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  font-size: 1rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}
.map {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}
.map img {
  width: 34px;
  height: 34px;
  margin-right: 7px;
}

/* Success / Thank you */
.text-section ul {
  margin-bottom: 16px;
  margin-top: 0;
}
.text-section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.text-section ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.5px;
  font-size: 1.25em;
  color: var(--secondary);
  font-weight: bold;
}
ul {
  margin-left: 0;
  margin-top: 6px;
  padding-left: 17px;
}
ul li {
  margin-bottom: 9px;
}


/* =========================================================
   BLOG / NEWS POSTS
   ========================================================= */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(27,53,86, 0.08);
  padding: 26px 20px 20px 20px;
  flex: 1 1 270px;
  min-width: 210px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow .15s, transform .10s;
}
.blog-post:hover {
  box-shadow: 0 6px 18px rgba(27,53,86,0.13);
  transform: translateY(-2px) scale(1.015);
}

/* =========================================================
   GENERAL SPACING COMPONENTS
   ========================================================= */
.section,.card,
.feature-grid > div,.benefits-grid > div,.value-list > div,.impact-stats > div,.card-container > *, .testimonial-card,.blog-list > div {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.feature-grid,
.value-list,.benefits-grid,
.impact-stats,.blog-list {
  gap: 24px;
}
.content-grid,.text-image-section {
  gap: 20px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1100;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(27, 53, 86, 0.11);
  padding: 30px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 4px solid var(--secondary);
  transition: transform .32s cubic-bezier(.55,0,.23,1), opacity .23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 10px 20px;
  min-width: 140px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: .8px;
  transition: background .14s, color .14s, box-shadow .10s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .reject {
  background: var(--gray-300);
  color: var(--primary);
}
.cookie-banner .reject:hover,.cookie-banner .reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.cookie-banner .settings:hover,.cookie-banner .settings:focus {
  background: var(--primary);
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1200;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,53,86,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .19s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(27,53,86,0.18);
  max-width: 390px;
  width: 94vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1251;
  animation: modal-slidein .28s cubic-bezier(.55,0,.23,1);
}
@keyframes modal-slidein {
  from {transform: translateY(44px) scale(.93); opacity: 0.1;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1400;
}
.cookie-modal-close:hover {
  color: var(--danger);
}
.cookie-modal h2, .cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-100);
  border-radius: 9px;
  padding: 13px 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-right: 12px;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: var(--secondary);
  transform: scale(1.18);
}
.cookie-category.essential label:after {
  content: '(immer aktiv)';
  font-size: 0.89em;
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 10px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 19px;
}
.cookie-modal-buttons button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 500;
  border: none;
  transition: background .13s, color .13s;
}
.cookie-modal-buttons .save {
  background: var(--primary);
  color: #fff;
}
.cookie-modal-buttons .save:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal-buttons .cancel {
  background: var(--gray-300);
  color: var(--primary);
}
.cookie-modal-buttons .cancel:hover {
  background: var(--danger);
  color: #fff;
}

/* =========================================================
   MEDIA QUERIES - RESPONSIVE
   ========================================================= */
@media (max-width: 1120px) {
  .container {
    max-width: 97vw;
    padding-left: 13px;
    padding-right: 13px;
  }
}

@media (max-width: 1023px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 28px 8px;
  }
  .card-container, .feature-grid,.value-list, .benefits-grid, .impact-stats, .blog-list {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  .container { padding-left: 7px; padding-right: 7px; }
  .section, .section.cta {
    padding: 20px 2px;
    margin-bottom: 42px;
  }
  .feature-grid, .value-list, .benefits-grid, .impact-stats, .blog-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .footer-bottom {
    font-size: 0.92rem;
  }
  .hero { padding: 38px 0 22px 0; }
  .content-wrapper { gap: 16px; }
  .text-image-section, .content-grid { flex-direction: column; gap: 12px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .map {
    padding: 10px;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .card, .feature-grid > div, .benefits-grid > div, .value-list > div, .impact-stats > div, .blog-list > div {
    padding: 18px 8px 13px 11px;
    font-size: 0.97em;
    min-width: 0;
  }
  .hero .container {
    flex-direction: column;
    gap: 8px;
    padding-left: 0; padding-right: 0;
  }
  .footer-contact {
    min-width: 0;
    width: 100%;
  }
}

/* =========================================================
   TRANSITIONS & MICRO-INTERACTIONS
   ========================================================= */
button, .cta, input, .blog-post, .card, .feature-grid > div, .mobile-menu, .testimonial-card {
  transition: background .17s, color .17s, box-shadow .15s, transform .14s;
}

a {
  transition: color .13s;
}

.card, .feature-grid > div, .benefits-grid > div, .value-list > div {
  will-change: transform;
}

/* Focus styles */
a:focus, button:focus, .cta:focus, input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}


/* =========================================================
   MODERN SHADOWS & ROUNDED CORNERS
   ========================================================= */
.card, .feature-grid > div, .value-list > div, .benefits-grid > div, .impact-stats > div, .blog-list > div, .testimonial-card, .footer-contact, .section, .cookie-modal {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(27, 53, 86, 0.07);
}

img, .logo img {
  border-radius: 0;
  background: none;
}

/* Style for .value-list, .benefits-grid */
.value-list, .benefits-grid {
  margin-bottom: 16px;
}
.value-list img, .feature-grid img, .benefits-grid img {
  max-width: 42px; max-height: 42px; margin-bottom: 5px; filter: grayscale(15%); opacity: .98;
}


/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-col { flex-direction: column; }
.mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; }


/* Hide visually but keep accessible */
.visually-hidden, .sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
}

/* Strong mobile selectability/tap targets */
.mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
  -webkit-tap-highlight-color: rgba(27,53,86,.11);
  touch-action: manipulation;
}


/* =========================================================
   END
   ========================================================= */
