/* ========================================================== */
/*           GLIMORA TRUST - STYLE.CSS (Monochrome)           */
/* ========================================================== */

/* ---------------------------------------------------------- */
/*            CSS RESET & 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;    outline: none;    font-size: 100%;    font: inherit;    vertical-align: baseline;    background: transparent;    box-sizing: border-box;}

html {    box-sizing: border-box;    scroll-behavior: smooth;    -webkit-font-smoothing: antialiased;    -moz-osx-font-smoothing: grayscale;}
*, *::before, *::after {    box-sizing: inherit;}

body {    min-height: 100vh;    font-family: 'Roboto', Arial, sans-serif;    font-size: 16px;    background: #F8F8FA;    color: #111112;    line-height: 1.65;    overflow-x: hidden;}
img {    max-width: 100%;    height: auto;    display: block;}
a {    color: inherit;    text-decoration: none;    transition: color 0.2s;    cursor: pointer;}
ul, ol {    list-style: none;}
button {    background: none;    border: none;    padding: 0;    margin: 0;    font-family: inherit;    font-size: inherit;    cursor: pointer;}

/* ---------------------------------------------------------- */
/*           COLOR PALETTE & VARIABLES                       */
/* ---------------------------------------------------------- */
:root {
  --color-bg: #F8F8FA;
  --color-bg-dark: #111112;
  --color-bg-light: #fff;
  --color-primary: #223347;
  --color-secondary: #96B7CC;
  --color-accent: #F8F8FA;
  --color-neutral: #d3d7dc;
  --color-border: #e0e1e4;
  --color-text: #111112;
  --color-text-light: #fff;
  --color-gray-1: #333;
  --color-gray-2: #666;
  --color-gray-3: #999;
  --color-shadow: rgba(34, 51, 71, 0.05);
  --color-shadow-strong: rgba(34, 51, 71, 0.16);
  --color-error: #222; /* monochrome for error */
}

/* ---------------------------------------------------------- */
/*            TYPOGRAPHY SCALE & FONT-FAMILIES                */
/* ---------------------------------------------------------- */
h1, .h1  {    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;    font-weight: 700;    font-size: 2.5rem;    letter-spacing: -0.5px;    margin-bottom: 24px;    color: var(--color-primary);}
h2, .h2  {    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;    font-weight: 600;    font-size: 2rem;    margin-bottom: 20px;    color: var(--color-primary);}
h3, .h3  {    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;    font-weight: 500;    font-size: 1.3rem;    margin-bottom: 12px;    color: var(--color-primary);}
h4, .h4  {    font-family: 'Roboto', Arial, sans-serif;    font-weight: 500;    font-size: 1.1rem;    margin-bottom: 8px;    color: var(--color-gray-1);}
p, ul, li, span, label, strong, em, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-gray-1);
}
strong { font-weight: 700; }
small { font-size: 0.9rem; color: var(--color-gray-3); }

.cta-btn, .btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border-radius: 26px;
  border: none;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.18s, box-shadow 0.22s, color 0.2s, transform 0.16s;
  margin-top: 24px;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 4px 14px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* ---------------------------------------------------------- */
/*                    LAYOUT & CONTAINERS                     */
/* ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: 24px;
  box-shadow: 0 2px 14px var(--color-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-light);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--color-shadow-strong);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 280px;
  max-width: 500px;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1rem;
}
.testimonial-card p {
  color: var(--color-gray-1);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0;
}

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

/* ---------------------------------------------------------- */
/*                  HEADER & NAVIGATION                       */
/* ---------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px var(--color-shadow-strong);
  padding: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
header img {
  height: 46px;
  margin-right: 28px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
nav a {
  color: var(--color-primary);
  font-size: 1.04rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-primary);
  color: #fff;
}

header .cta-btn {
  margin-left: 16px;
  margin-top: 0;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--color-primary);
  padding: 8px 14px 8px 14px;
  z-index: 120;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-neutral);
}

/* ---------------------------------------------------------- */
/*                MOBILE NAVIGATION OVERLAY                   */
/* ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,51,71,0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.69,.21,.33,1);
  box-shadow: -12px 0 40px rgba(34,51,71,0.18);
  overflow-y: auto;
  padding: 0 0 20px 0;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #fff;
  margin: 22px 24px 0 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.14s;
  border-radius: 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22334744;
}
.mobile-nav {
  margin: 40px 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.38rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 4px;
  transition: color 0.14s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: #223347;
}

/* Show/hide nav on mobile/desktop */
@media (max-width: 991px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .cta-btn { display: none; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* ---------------------------------------------------------- */
/*               HERO SECTION / PROMINENT BANNERS             */
/* ---------------------------------------------------------- */
.hero {
  display: flex;
  background: linear-gradient(135deg, #f8f8fa 60%, #eee 100%);
  border-radius: 32px;
  box-shadow: 0 3px 22px var(--color-shadow);
  margin-bottom: 44px;
  padding: 42px 0 32px 0;
}
.hero .container {    flex-direction: row;    align-items: center;    justify-content: center; }
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--color-primary);
  text-shadow: 0 2px 8px #e4e5e7;
  letter-spacing: -1px;
}
.hero p { font-size: 1.15rem; color: var(--color-gray-2); }

/* ---------------------------------------------------------- */
/*                  FOCUS & INTERACTIVE STATES                */
/* ---------------------------------------------------------- */
:focus-visible {
  outline: 2px dotted var(--color-primary);
  outline-offset: 2px;
}

/* ---------------------------------------------------------- */
/*                   SECTIONS and FEATURES                    */
/* ---------------------------------------------------------- */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features h2 { margin-bottom: 22px; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  padding: 28px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 36px var(--color-shadow-strong);
  transform: translateY(-4px) scale(1.04);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-grid h3 { font-size: 1.16rem; color: var(--color-primary); }
.feature-grid p { font-size: 1rem; color: var(--color-gray-2); }

/* INTERVIEWS, ARTICLES, CARDS */
.interview-previews,.interview-teaser-grid,.article-teaser-grid,.opinion-summaries,.opinion-cards,.guide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.interview-previews > div,
.interview-teaser-grid > div,
.article-teaser-grid > div,
.opinion-summaries > div,
.opinion-cards > div,
.guide-cards > div {
  flex: 1 1 270px;
  min-width: 250px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.16s;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.interview-previews > div:hover,
.interview-teaser-grid > div:hover,
.article-teaser-grid > div:hover,
.guide-cards > div:hover {
  box-shadow: 0 7px 25px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.02);
}
.interview-previews h3,.interview-teaser-grid h3,.article-teaser-grid h3, .guide-cards h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.interview-previews p,.interview-teaser-grid p,.article-teaser-grid p, .guide-cards p {
  font-size: 1rem;
  color: var(--color-gray-2);
}
.interview-previews a,
.interview-teaser-grid a,
.article-teaser-grid a,
.guide-cards a {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 1px solid var(--color-primary);
  transition: color 0.18s, border-bottom 0.16s;
}
.interview-previews a:hover,
.interview-teaser-grid a:hover,
.article-teaser-grid a:hover, .guide-cards a:hover {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

/* CATEGORY FILTERS & TAGS */
.category-filters,.topic-tags,.quick-navigation-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
}
.category-filters span,.topic-tags span,.quick-navigation-links span {
  font-weight: 500;
  color: var(--color-primary);
  margin-right: 4px;
}
.category-filters a, .topic-tags a, .quick-navigation-links a {
  padding: 3px 16px;
  border-radius: 14px;
  background: #ededf1;
  color: var(--color-primary);
  font-size: 0.98rem;
  transition: background 0.15s, color 0.16s;
}
.category-filters a:hover, .topic-tags a:hover, .quick-navigation-links a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* GUIDES section LISTS */
.guides ul, .team ul {    margin-bottom: 26px; }
.guides li, .team li {
  line-height: 1.6;
  padding-bottom: 12px;
  font-size: 1rem;
  color: var(--color-gray-1);
}
.guides li strong, .team li strong {
  font-size: 1.02rem;
  color: var(--color-primary);
}

/* CTA SECTION */
.cta {
  text-align: center;
  background: var(--color-primary);
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 4px 20px var(--color-shadow-strong);
  padding: 42px 20px;
  margin-bottom: 32px;
}
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: #d3d7dc; }
.cta a.cta-btn {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-top: 30px;
}
.cta a.cta-btn:hover, .cta a.cta-btn:focus {
  background: var(--color-secondary);
  color: #222;
  border-color: var(--color-secondary);
}

/* ABOUT/TEXT SECTIONS */
.about {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.values .authenticity-explanation, .values .reader-closeness-explanation {
  margin-top: 8px;
  color: #888;
  font-size: 1rem;
}

.text-section {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  margin-top: 14px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.text-section li img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
}

/* LEGAL SECTIONS */
.legal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 38px 24px;
  min-height: 70vh;
}

/* THANK YOU/CONFIRMATION */
.confirmation {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 58px 0;
  text-align: center;
}
.confirmation h1 { margin-bottom: 18px; color: var(--color-primary);}
.confirmation .thank_you_message { color: var(--color-gray-2); margin-bottom: 26px; }

/* ---------------------------------------------------------- */
/*                        FOOTER                              */
/* ---------------------------------------------------------- */
footer {
  width: 100%;
  background: #111112;
  color: #fff;
  padding: 44px 0 0 0;
  letter-spacing: 0.01em;
}
footer .container {
  align-items: stretch;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid #333;
  padding-bottom: 18px;
  margin-bottom: 10px;
}
.footer-top a img {
  width: 44px;
  height: 44px;
}
.footer-top nav {
  flex-direction: row;
  gap: 18px;
}
.footer-top nav a {
  color: #bbb;
  font-size: 1.02rem;
  transition: color 0.15s;
  background: none;
}
.footer-top nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  text-align: left;
  padding: 18px 0 8px 0;
  color: #aaa;
}
.footer-bottom small {
  color: #aaa;
  font-size: 0.96rem;
}

/* ---------------------------------------------------------- */
/*                    RESPONSIVE DESIGN                       */
/* ---------------------------------------------------------- */
@media (max-width: 991px) {
  .container {
    max-width: 680px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-top nav {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.48rem; }
  .container {
    padding-left: 8px; padding-right: 8px;
    max-width: 99vw;
  }
  .section { padding: 28px 7px; margin-bottom: 40px; border-radius: 13px; }
  .hero { border-radius: 16px; padding: 32px 0 16px 0; }
  .content-wrapper { gap: 16px; }
  .feature-grid, .interview-previews, .interview-teaser-grid, .article-teaser-grid, .opinion-summaries, .opinion-cards, .guide-cards {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .interview-previews > div, .interview-teaser-grid > div, .article-teaser-grid > div, .opinion-summaries > div, .opinion-cards > div, .guide-cards > div {
    min-width: unset; max-width: unset; width: 100%;
  }
  .category-filters, .topic-tags, .quick-navigation-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 15px;
  }
  .testimonial-card {
    max-width: 100vw;
    min-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
}
@media (max-width: 510px) {
  .hero h1 { font-size: 1.28rem; }
  .container {
    padding-left: 2px; padding-right: 2px;
  }
  .cta {
    padding: 28px 4px;
  }
}

/* ---------------------------------------------------------- */
/*                    ANIMATION STYLES                        */
/* ---------------------------------------------------------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero, .section, .card, .testimonial-card, .cta, .feature-grid > div {
  animation: fadeInUp .8s cubic-bezier(.66,.15,.42,1);
}

/* ---------------------------------------------------------- */
/*                COOKIE CONSENT BANNER                       */
/* ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #223347;
  color: #fff;
  z-index: 3100;
  box-shadow: 0 -2px 16px var(--color-shadow-strong);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 20px;
  font-size: 1rem;
}
.cookie-banner p {
  margin: 0 18px 0 0;
  color: #fff;
  flex: 1 1 50%;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  border-radius: 20px;
  border: none;
  outline: none;
  padding: 10px 32px;
  margin: 0;
  background: #fff;
  color: #223347;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 10px 22px;
  transition: background 0.13s, color 0.14s, border 0.11s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #fff;
  color: #223347;
}

/* RESPONSIVE COOKIE BANNER */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 3px;
  }
  .cookie-banner p {
    margin: 0 0 8px 0;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ----------------- COOKIE CONSENT MODAL STYLES ----------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 51, 71, 0.88);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 6px 32px #2233472a;
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeInUp .45s cubic-bezier(.64,.13,.42,1);
}
.cookie-modal h2 {
  font-size: 1.22rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.cookie-modal label {
  font-size: 1.02rem;
  margin-left: 6px;
  color: var(--color-gray-1);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 17px;
  color: var(--color-gray-3);
  background: none;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-primary);
  width: 17px; height: 17px;
}
.cookie-modal .cookie-always { filter: grayscale(100%) opacity(0.7); }
.cookie-modal .cookie-always label { color: #bbb; }
.cookie-modal .cookie-modal-btns {
  margin-top: 26px;
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal .cookie-modal-btns button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  border-radius: 18px;
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal .cookie-modal-btns button.secondary-btn {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-modal .cookie-modal-btns button.secondary-btn:hover,
.cookie-modal .cookie-modal-btns button.secondary-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-modal .cookie-modal-btns button.primary-btn:hover,
.cookie-modal .cookie-modal-btns button.primary-btn:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ---------------------------------------------------------- */
/*                  UTILITY & MICRO-INTERACTIONS              */
/* ---------------------------------------------------------- */
.shadow-sm { box-shadow: 0 2px 8px var(--color-shadow); }
.shadow-xl { box-shadow: 0 6px 36px var(--color-shadow-strong); }
.rounded { border-radius: 14px; }
.clearfix::after { content: ''; display: block; clear: both; }
.text-center { text-align: center!important;}
.text-right { text-align: right!important;}

::-webkit-scrollbar { width: 10px; background: #eee; }
::-webkit-scrollbar-thumb { background: #d3d7dc; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #b5b8bc; }

/* ---------------------------------------------------------- */
/*                   PRINT SUPPORT                            */
/* ---------------------------------------------------------- */
@media print {
  body, html { background: #fff!important; color: #000!important; }
  header, footer, .cookie-banner, .mobile-menu { display: none!important; }
  .hero, .section, .cta, .card, .guide-cards, .feature-grid, .opinion-cards, .testimonial-card, .legal {
    box-shadow: none!important;
    background: #fff!important;
  }
}
