/* 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.5;
  background: #232942;
  color: #F6F8FA;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #FFB52E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 2px #FFB52E, 0 0 8px #FFB52E;
  outline: none;
}
ul, ol {
  margin-left: 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px #28538A60;
}
h2 {
  font-size: 1.7rem;
  margin-top: 20px;
}
h3 {
  font-size: 1.3rem;
}
p, li, label {
  color: #EDEFF3;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
strong, b {
  color: #FFB52E;
  font-weight: 700;
}
.text-section h2, .text-section h3 {
  margin-top: 20px;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  background: #262d49;
  box-shadow: 0 4px 32px 0 #28538A10;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.text-section {
  margin: 0 0 20px 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(102deg, #19203c 0%, #28538A 85%);
  box-shadow: 0 8px 32px 0 #16213960;
  margin-bottom: 0;
  padding: 54px 20px 54px 20px;
  border-radius: 0 0 32px 32px;
}
.hero h1 {
  color: #FFB52E;
  text-shadow: 0 4px 32px #FFB52E33, 0 0 14px #FFB52E77;
  font-size: 2.6rem;
}
.hero p {
  font-size: 1.15rem;
  color: #EDEFF3;
  margin-bottom: 10px;
}

/* BRAND BUTTONS (CTA) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  margin: 10px 0 0 0;
  font-size: 1.1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.22s, box-shadow 0.22s;
  text-shadow: 0 1px 4px #0008;
  letter-spacing: 0.04em;
  min-width: 180px;
}
.cta-btn.primary {
  background: #FFB52E;
  color: #232942;
  box-shadow: 0 2px 24px 0 #FFB52E70;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #28538A;
  color: #fff;
  border-color: #FFB52E;
  box-shadow: 0 0 0 4px #FFB52E50, 0 2px 24px 0 #28538A55;
}
.cta-btn.accent {
  background: none;
  border: 2px solid #FFB52E;
  color: #FFB52E;
  box-shadow: 0 2px 16px 0 #FFB52E22;
}
.cta-btn.accent:hover, .cta-btn.accent:focus {
  background: #FFB52E;
  color: #232942;
  border-color: #28538A;
  box-shadow: 0 0 0 4px #28538A33, 0 2px 24px 0 #FFB52E55;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* NAVIGATION */
header {
  position: relative;
  background: #262d49;
  box-shadow: 0 2px 38px -8px #19203c10;
  z-index: 800;
}
.nav-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 12px 0;
}
.logo-link img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #EDEFF3;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background 0.13s, color 0.13s, box-shadow 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFB52E22;
  color: #FFB52E;
  box-shadow: 0 0 7px #FFB52E44;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #FFB52E;
  background: none;
  border: none;
  z-index: 1201;
  position: absolute;
  top: 22px;
  right: 24px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #19203cDD;
  box-shadow: 0 12px 64px #28538A88;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 20px 20px 20px;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.99,.16,.33,.97), opacity 0.29s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #FFB52E;
  font-size: 2rem;
  border: none;
  margin-bottom: 12px;
  padding: 0 6px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff8dd;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 8px;
  border-radius: 8px;
  background: none;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #28538A;
  color: #FFB52E;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .cta-btn.primary {
    min-width: unset;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* --- FLEXBOX LAYOUTS --- */
.feature-grid, .guide-list, .service-list, .category-filter, .topic-filters, .devices-categories, .category-navigation, .footer-nav, .footer-legal-nav, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid {
  gap: 32px;
  margin-top: 16px;
}
.feature-grid li {
  list-style: none;
  flex: 1 1 220px;
  background: #212747;
  border-radius: 12px;
  box-shadow: 0 2px 18px #28538A18;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  border: 1.5px solid #28538A44;
  min-width: 170px;
  transition: box-shadow 0.18s, border 0.21s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 32px #FFB52E44;
  border: 1.5px solid #FFB52E;
}
.feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 6px;
}

.service-list {
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
  margin-bottom: 24px;
  font-size: 1.08rem;
}
.service-list li {
  background: #252d46;
  border-radius: 10px;
  box-shadow: 0 1px 8px #28538A18;
  padding: 14px 18px;
}

.guide-list {
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 22px;
}
.guide-list a {
  font-size: 1.07rem;
  color: #FFB52E;
  text-decoration: underline dotted #FFB52E;
  transition: color 0.13s, text-shadow 0.14s;
}
.guide-list a:hover, .guide-list a:focus {
  color: #fff;
  text-shadow: 0 0 10px #FFB52E55;
}

.category-filter, .topic-filters, .devices-categories, .category-navigation {
  flex-wrap: wrap;
  margin: 18px 0 0 0;
}
.category-filter a, .topic-filters a, .devices-categories a, .category-navigation a {
  background: #363F6A;
  color: #FFB52E;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
  margin-bottom: 5px;
}
.category-filter a:hover, .topic-filters a:hover, .devices-categories a:hover, .category-navigation a:hover,
.category-filter a:focus, .topic-filters a:focus, .devices-categories a:focus, .category-navigation a:focus {
  background: #FFB52E;
  color: #232942;
  box-shadow: 0 0 12px #FFB52E88;
}

/* --- CARD AND FLEX CONTAINERS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.card {
  background: #262d49;
  border-radius: 14px;
  box-shadow: 0 2px 20px #28538A14;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F6F8FA;
  color: #232942;
  border-radius: 18px;
  box-shadow: 0 3px 38px #28538A26;
  padding: 20px 30px;
  margin-top: 14px;
  margin-bottom: 20px;
  border: 2px solid #FFB52E22;
  min-width: 220px;
  max-width: 789px;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #292f47;
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #28538A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.team-member-card {
  background: #212747;
  color: #FFB52E;
  padding: 20px 22px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #FFB52E12;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- REVIEW CARDS & TESTS --- */
.review-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.review-card {
  background: #262d49;
  border-radius: 12px;
  box-shadow: 0 2px 20px #28538A14;
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border: 1.5px solid #28538A33;
  transition: box-shadow 0.17s, border 0.18s;
}
.review-card:hover {
  box-shadow: 0 8px 32px #FFB52E44;
  border: 1.5px solid #FFB52E;
}
.review-card h3 {
  color: #FFB52E;
  font-size: 1.08rem;
}
.review-card a {
  color: #FFB52E;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.12s;
}
.review-card a:hover, .review-card a:focus {
  color: #fff;
  text-shadow: 0 0 14px #FFB52E55;
}
.comparison-test-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.test-card {
  background: #212747;
  color: #FFB52E;
  border-radius: 11px;
  box-shadow: 0 1px 12px #FFB52E12;
  padding: 16px 18px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 200px;
}

/* --- RANKING TABLE --- */
.ranking-table {
  width: 100%;
  margin: 28px 0 24px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #212747;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 18px #28538A18;
}
.ranking-table th,
.ranking-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #29305a;
}
.ranking-table th {
  background: #28538A;
  color: #FFB52E;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  border: none;
}
.ranking-table tr:last-child td {
  border-bottom: none;
}
.ranking-table tbody tr:hover {
  background: #26294A;
  transition: background 0.13s;
}

/* --- MAP EMBED (Kontakt) --- */
.map-embed {
  background: #212747;
  color: #FFB52E;
  padding: 18px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- FOOTER SECTION --- */
footer {
  background: #19203c;
  padding: 0;
  font-size: 1rem;
  box-shadow: 0 -6px 42px 0 #28538A09;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1.5px solid #212747;
  padding: 24px 0 16px 0;
}
.footer-top img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #FFB52E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 8px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #FFB52E22;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  margin-top: 12px;
  padding: 18px 0 22px 0;
  border-bottom: 1px solid #212747;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal-nav a {
  color: #F6F8FA;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 6px;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.footer-legal-nav a:hover, .footer-legal-nav a:focus {
  color: #FFB52E;
  background: #28538A44;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.97rem;
  color: #F6F8FA;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  border-radius: 4px;
  background: #FFB52E10;
  padding: 3.5px;
  transition: background 0.13s;
}
.footer-social a:hover img, .footer-social a:focus img {
  background: #FFB52E44;
}

/* --- FORMS, LABELS & SEARCH --- */
.search-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #212747;
  padding: 14px 22px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.search-filter label {
  font-size: 1rem;
  color: #FFB52E;
  font-weight: 600;
}
.search-filter select {
  border: 1.5px solid #28538A;
  background: #262d49;
  color: #FFB52E;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 6px 14px;
  transition: border-color 0.14s;
}
.search-filter select:focus {
  outline: 2px solid #FFB52EAA;
  border-color: #FFB52E;
}
input[type="text"], input[type="email"], textarea {
  background: #262d49;
  color: #fff;
  border: 1.5px solid #28538A44;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.15s, background 0.14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #FFB52EAA;
  background: #212747;
  outline: 0;
}
label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
  color: #FFB52E;
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 900px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-nav, .footer-legal-nav, .footer-social {
    gap: 12px;
  }
  .container {
    padding: 0 12px;
  }
  .section, section, .hero, .content-wrapper {
    padding: 28px 10px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .devices-categories, .category-navigation, .review-card-grid, .card-container, .comparison-test-cards {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch !important;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-grid li, .card, .review-card, .test-card {
    min-width: unset;
    max-width: 100%;
  }
  section, .section {
    padding: 22px 5px;
  }
  .text-image-section { flex-direction: column !important; gap: 14px; }
}
@media (max-width: 650px) {
  .hero h1 { font-size: 1.45rem; }
  h1 { font-size: 1.25rem; }
  .content-wrapper { gap: 16px; }
}

/* === COOKIE BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2200;
  width: 100vw;
  background: #19203c;
  box-shadow: 0 -2px 24px #28538A22;
  color: #fff;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  transition: transform 0.28s cubic-bezier(.62,1.5,.56,0.93), opacity 0.26s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 9px 24px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: 2px solid transparent;
  background: #FFB52E;
  color: #232942;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.16s;
  margin-bottom: 4px;
  margin-right: 4px;
}
.cookie-btn.rejected {
  background: #232942;
  color: #FFB52E;
  border: 2px solid #FFB52E;
}
.cookie-btn.settings {
  background: #fff;
  color: #28538A;
  border: 2px solid #28538A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #28538A;
  color: #FFB52E;
  border-color: #FFB52E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFB52E;
  color: #232942;
  border-color: #FFB52E;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2250;
  background: #232942C9;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #F6F8FA;
  color: #232942;
  border-radius: 20px;
  padding: 30px 26px 22px 26px;
  max-width: 430px;
  width: 100%;
  box-shadow: 0 4px 36px #28538A33, 0 0 0 4px #FFB52E33;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.03rem;
  animation: cookieModalIn 0.44s cubic-bezier(.5,2.1,.23,.99);
  position: relative;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #FFB52E;
  border: none;
  color: #232942;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.33rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #232942;
  color: #FFB52E;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #FFB52E;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #28538A;
}
.cookie-category.essential label {
  color: #28538A;
}

/* --- UTILS & SCROLLBARS --- */
::-webkit-scrollbar {
  width: 9px;
  background: #212747;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #28538A;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFB52E;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* --- MISC SPACING AND EFFECTS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SELECTION EFFECT --- */
::selection {
  background: #FFB52E44;
}

/* --- TECH FUTURISTIC NEON/EFFECTS --- */
.hero, .card, .review-card, .test-card, .feature-grid li {
  box-shadow: 0 2px 32px 0 #28538A33, 0 0 0 2px #FFB52E11;
}
.cta-btn, .cookie-btn {
  box-shadow: 0 1px 8px #FFB52E22, 0 0 12px 0 #FFB52E11;
}
.testimonial-card, .cookie-modal-content {
  box-shadow: 0 2px 24px #28538A22, 0 0 8px #FFB52E28;
}

/* --- END --- */
