/*-------------------------------------
  CSS RESET & BASE RULES
--------------------------------------*/
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: #fff;
  color: #191919;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #154273;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  outline: none;
}
ul, ol {
  list-style: none;
}

/*-------------------------------------
  MONOCHROME SOPHISTICATED BRANDING
--------------------------------------*/
:root {
  --color-primary: #154273;
  --color-secondary: #46505a;
  --color-accent: #F2F2F2;
  --color-bg: #fff;
  --color-bg-dark: #191919;
  --color-gray: #E6E6E6;
  --color-border: #d1d1d1;
  --color-shadow: rgba(30, 32, 41, 0.08);
  --color-card-bg: #fff;
  --color-card-bg-dark: #22252A;
  --color-typography: #171717;
  --color-typography-muted: #454545;
  --color-link-hover: #090c12;
  --transition: all 0.22s cubic-bezier(.4,.2,.2,1);
  --radius-base: 10px;
  --radius-pill: 999px;
}

body {
  background: var(--color-bg);
  color: var(--color-typography);
  word-break: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius-base);
}

/*-------------------------------------
  TYPOGRAPHY
--------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #121212;
  line-height: 1.16;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 28px;
  color: #000;
}
h2 {
  font-size: 2rem;
  color: #121212;
  margin-bottom: 20px;
  margin-top: 8px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #191919;
  margin-bottom: 12px;
}
h4, h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #454545;
}
ul {
  margin-bottom: 24px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #191919;
  background: linear-gradient(90deg,#fff 85%,#EFF1F3 100%);
  padding: 24px 32px;
  border-left: 5px solid #154273;
  border-radius: var(--radius-base);
  margin-bottom: 16px;
  box-shadow: 0px 2px 16px -3px var(--color-shadow);
  transition: var(--transition);
}
cite {
  display: block;
  font-size: 1rem;
  color: #727273;
  margin-bottom: 4px;
  font-style: normal;
}
strong {
  font-weight: 600;
  color: #191919;
}

/*-------------------------------------
  GENERAL SPACING & FLEX UTILS
--------------------------------------*/
.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;
  background: #fff;
  box-shadow: 0px 2px 16px -3px var(--color-shadow);
  border-radius: var(--radius-base);
  margin-bottom: 24px;
  max-width: 700px;
  border: 1px solid var(--color-gray);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.values-list, .commitments-list, .benefits-list {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333;
}
.values-list li, .commitments-list li, .benefits-list li {
  list-style: disc inside;
  margin-bottom: 8px;
  padding-left: 4px;
  font-size: 1rem;
}

/*-------------------------------------
  HEADER & NAVIGATION
--------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid var(--color-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #232528;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 2px 2px 2px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  background: #EFF1F3;
  color: #154273;
}
header img {
  max-height: 40px;
  margin-right: 16px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: #fff;
  color: #154273;
  border: 2px solid #154273;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, border .18s;
  margin-left: 18px;
  box-shadow: 0 1px 6px -2px var(--color-shadow);
  text-align: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #154273;
  color: #fff;
  box-shadow: 0px 6px 20px -2px var(--color-shadow);
  outline: none;
  border-color: #154273;
}

/* HAMBURGER MENU (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #191919;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 24px;
  transition: color 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #154273;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  color: #181a1d;
  transform: translateX(100%);
  transition: transform 0.27s cubic-bezier(.6,.3,.3,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: -4px 0 28px 6px var(--color-shadow);
  padding: 0px 24px 24px 18px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #154273;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 1300;
  cursor: pointer;
  line-height: 1.14;
  padding: 0 6px 2px 6px;
  border-radius: 8px;
  transition: background .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e9ecef;
  color: #111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 20px;
  width: 90vw;
  max-width: 420px;
  z-index: 1203;
}
.mobile-nav a {
  color: #154273;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 14px 10px;
  border-radius: 5px;
  transition: background 0.15s, color 0.2s;
  background: none;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f0fc;
  color: #191919;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .cta-btn {
    margin-left: 0;
    display: none;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .mobile-menu {
    padding-top: 24px;
  }
}

/*-------------------------------------
  HERO SECTION
--------------------------------------*/
.hero {
  background: #191919;
  color: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 40px -6px #0000000d;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero p {
  color: #e6e6e6;
  max-width: 600px;
  font-size: 1.16rem;
}
.hero .cta-btn {
  background: #fff;
  color: #191919;
  font-weight: 700;
  border: none;
  margin-left: 0;
  box-shadow: 0 2px 16px -3px var(--color-shadow);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #154273;
  color: #fff;
  border: none;
}

/*-------------------------------------
  FEATURE TEASERS
--------------------------------------*/
.features,
.services-overview {
  background: var(--color-accent);
  border-radius: var(--radius-base);
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px -3px var(--color-shadow);
  border: 1px solid var(--color-gray);
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 300px;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .2s, border-color .18s, transform .16s;
}
.feature-grid li img {
  max-height: 38px;
  margin-bottom: 8px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 32px -8px var(--color-shadow);
  border-color: #154273;
  transform: translateY(-2px) scale(1.015);
}
.features h2, .features h3 {
  color: #191919;
}

.services-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  margin-top: 10px;
  justify-content: flex-start;
}
.service-teaser {
  background: #fff;
  border-radius: var(--radius-base);
  padding: 28px 20px 20px 20px;
  box-shadow: 0 2px 16px -3px var(--color-shadow);
  border: 1px solid var(--color-gray);
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 260px;
  color: #232528;
  transition: box-shadow .2s, border-color .18s, transform .16s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-teaser h3 {
  color: #154273;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-teaser:hover {
  box-shadow: 0 8px 32px -9px var(--color-shadow);
  border-color: #154273;
  transform: translateY(-2px) scale(1.015);
}

/*-------------------------------------
  ABOUT & VALUES
--------------------------------------*/
.about-intro, .about-team, .values, .background {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px -3px var(--color-shadow);
  border: 1px solid var(--color-gray);
}
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.value-grid > div {
  background: var(--color-accent);
  padding: 24px 18px 18px 18px;
  border-radius: var(--radius-base);
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 330px;
  box-shadow: 0px 1px 8px -2px var(--color-shadow);
  border: 1px solid var(--color-gray);
}

.text-section {
  margin-bottom: 26px;
}
.text-section:last-child {
  margin-bottom: 0;
}

.text-section ul {
  margin-left: 18px;
}

/*-------------------------------------
  SECTION TEMPLATES + LIST STYLES
--------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.fact-list, .report-list, .article-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 8px;
}
.fact-item, .report-block, .article-entry, .service-block {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px -3px var(--color-shadow);
  border: 1px solid var(--color-gray);
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 350px;
  padding: 24px 16px 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, border-color .18s, transform .16s;
}
.fact-item h2, .report-block h2, .article-entry h2, .service-block h2 {
  margin-bottom: 8px;
}
.fact-item:hover, .report-block:hover, .article-entry:hover {
  box-shadow: 0px 6px 28px -6px var(--color-shadow);
  border-color: #154273;
  transform: scale(1.011);
}
.service-block {
  border-left: 6px solid #154273;
  padding-left: 28px;
  box-shadow: 0px 2px 16px -3px var(--color-shadow);
  margin-bottom: 22px;
}
.price {
  font-size: 1.05rem;
  color: #72A7D6;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 30px 0;
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px -3px var(--color-shadow);
  overflow: hidden;
  border: 1px solid var(--color-gray);
  font-size: 1rem;
}
.pricing-table caption {
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #191919;
  background: #f7f8fa;
  padding: 14px 18px 10px 18px;
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray);
}
.pricing-table th {
  background: #EFF1F3;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #191919;
  font-size: 1rem;
  font-weight: 600;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 1px 4px -2px var(--color-shadow);
  border: 1px solid var(--color-gray);
  padding: 18px 18px 14px 20px;
  transition: box-shadow .16s;
}
.faq-accordion h3 {
  font-size: 1.11rem;
  color: #154273;
  margin-bottom: 8px;
  font-weight: 600;
}
.faq-accordion > div:hover {
  box-shadow: 0 2px 14px -4px var(--color-shadow);
}

/*-------------------------------------
  TESTIMONIALS
--------------------------------------*/
.testimonial-preview {
  background: #EFF1F3;
  border-radius: var(--radius-base);
}
.testimonial-card {
  background: #fff;
  color: #181a1d;
  border: 1px solid #dee2e6;
  box-shadow: 0 3px 18px -4px var(--color-shadow);
  margin-bottom: 24px;
  font-size: 1.07rem;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow .17s, border-color .11s, transform .09s;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 6px;
  font-size: 1.11rem;
  color: #191919;
}
.testimonial-card cite {
  font-size: 0.98rem;
  color: #46505a;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.01);
}

/*-------------------------------------
  FOOTER
--------------------------------------*/
footer {
  background: #181A1D;
  color: #fff;
  width: 100%;
  position: relative;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
footer .content-wrapper {
  padding: 46px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  border-radius: var(--radius-base);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 2 1 260px;
  color: #f5f6f8;
}
.footer-brand img {
  max-width: 54px;
  margin-bottom: 6px;
}
.footer-brand p {
  color: #efefef;
  font-size: 0.99rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 130px;
  margin-top: 16px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  opacity: 0.94;
  transition: color .18s, opacity .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #72A7D6;
  opacity: 1;
}
.footer-contact {
  flex: 2 1 220px;
  margin-top: 16px;
}
.footer-contact p {
  color: #bbb;
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

/*-------------------------------------
  CALL TO ACTION
--------------------------------------*/
.cta-call {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 18px -4px var(--color-shadow);
  border: 1px solid var(--color-gray);
  text-align: center;
}
.cta-call .content-wrapper, .download-cta, .contact-cta, .cta-return-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-call h2 {
  color: #154273;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.download-cta a, .cta-return-home .cta-btn {
  margin-top: 10px;
}

/*-------------------------------------
  FILTERS, HIGHLIGHTS, CATEGORY LISTS
--------------------------------------*/
.research-highlights, .trend-prognosis, .benefits-list, .category-filter, .filters-by-topic, .interview-teasers {
  margin-top: 18px;
  margin-bottom: 24px;
}
.research-highlights ul, .trend-prognosis ul, .category-filter ul, .filters-by-topic ul, .interview-teasers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.filters-by-topic li, .category-filter li, .interview-teasers li, .research-highlights li, .trend-prognosis li, .benefits-list li {
  background: #f7f7f7;
  color: #232528;
  border-radius: 5px;
  padding: 8px 18px 8px 14px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  border: 1px solid #e2e2e2;
  transition: background .13s, border-color .13s, color .13s;
}
.filters-by-topic li:hover, .category-filter li:hover {
  background: #E6E6E6;
  border-color: #154273;
  color: #000;
  cursor: pointer;
}

/*-------------------------------------
  NEWSLETTER SIGNUP CTA
--------------------------------------*/
.newsletter-cta {
  background: #EFF1F3;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px -3px var(--color-shadow);
}
.newsletter-form {
  background: #fff;
  padding: 26px 18px 18px 18px;
  border-radius: var(--radius-base);
  box-shadow: 0 1px 12px -3px var(--color-shadow);
  margin-bottom: 14px;
}
.newsletter-form p {
  color: #363838;
  margin-bottom: 12px;
}
.newsletter-form .cta-btn {
  margin-left: 0;
  margin-top: 8px;
}

/*-------------------------------------
  COOKIE BANNER & MODAL
--------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #191919;
  color: #fff;
  z-index: 3000;
  box-shadow: 0 -1px 22px -8px var(--color-shadow);
  width: 100vw;
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform .25s cubic-bezier(.6,.2,.2,1);
  opacity: 1;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  flex: 3 1 320px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  padding: 11px 26px;
  margin-left: 0;
  cursor: pointer;
  transition: background .16s, color .16s, border .16s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #154273;
  color: #fff;
  border: 1.5px solid #154273;
}
.cookie-btn.accept:hover {
  background: #193c60;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #191919;
  border: 1.5px solid #191919;
}
.cookie-btn.reject:hover {
  background: #f7f7f7;
  color: #154273;
  border-color: #154273;
}
.cookie-btn.settings {
  background: #EFF1F3;
  color: #191919;
  border: 1.5px solid #ccd5df;
}
.cookie-btn.settings:hover {
  background: #e2e8f0;
  color: #191919;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,25,26, 0.50);
  z-index: 4001;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 325px;
  max-width: 94vw;
  width: 394px;
  background: #fff;
  color: #181a1d;
  border-radius: 16px;
  box-shadow: 0px 10px 50px 4px #00000014;
  padding: 38px 30px 26px 30px;
  z-index: 4002;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-in 0.33s cubic-bezier(.6,.2,.2,1);
}
@keyframes cookie-modal-in {
  from {opacity: 0; transform: translate(-50%,-40%) scale(0.93);}
  to {opacity: 1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h2 {
  font-size: 1.29rem;
  color: #154273;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #191919;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  accent-color: #154273;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.cookie-category.essential input {
  opacity: 0.75;
}
.cookie-category.essential label {
  color: #727273;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 11px 22px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #46505a;
  cursor: pointer;
  border-radius: 8px;
  transition: background .14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #EFF1F3;
}

/*-------------------------------------
  FORMATTING FOR POLICY/LEGAL/TEXT PAGES
--------------------------------------*/
.privacy-statement, .cookie-policy, .dsgvo-info, .terms-section {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px -3px var(--color-shadow);
  border: 1px solid var(--color-gray);
}
.privacy-statement .text-section,  .terms-section .terms-text, 
.cookie-policy .cookie-policy-text, .dsgvo-info .text-section {
  margin-bottom: 24px;
}
.privacy-statement h1, .cookie-policy h1, .dsgvo-info h1, .terms-section h1 {
  margin-bottom: 24px;
}
.privacy-statement ul, .dsgvo-info ul, .cookie-policy ul,
.terms-section ul {
  margin-left: 24px;
  margin-bottom: 18px;
}
.data-rights-info, .legal-details, .consent-management, .source-citation, .transparency-note {
  background: #EFF1F3;
  padding: 16px 16px 10px 20px;
  border-radius: var(--radius-base);
  margin-bottom: 18px;
  font-size: 1rem;
  color: #232528;
}

/*-------------------------------------
  RESPONSIVE DESIGN
--------------------------------------*/
@media (max-width: 900px) {
  .hero h1 {font-size: 2.18rem;}
  .container {max-width: 95vw;}
  .footer-brand, .footer-contact, .footer-nav, footer .content-wrapper {gap: 12px;}
  .feature-grid, .services-teaser-grid, .report-list, .fact-list, .article-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  section, .section { padding: 30px 8px; margin-bottom: 38px; }
  .hero {padding-top: 36px; padding-bottom: 36px;}
  .hero h1 {font-size: 1.59rem;}
  h1 { font-size: 2rem; margin-bottom: 16px; }
  h2 { font-size: 1.24rem; margin-bottom: 14px; }
  .content-wrapper {gap: 12px;}
  .feature-grid, .services-teaser-grid, .report-list, .fact-list, .article-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    font-size: 1rem;
  }
  .footer-contact, .footer-brand, .footer-nav, footer .content-wrapper {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 0;
    gap: 9px;
  }
  .footer-brand img {max-width: 40px;}
  .newsletter-form, .features .content-wrapper, .about-intro, .journal-entries .container {
    padding-left: 0;
    padding-right: 0;
  }
  .testimonial-card, .card, .fact-item, .article-entry, .report-block, .service-block {
    min-width: 0; max-width: 100%; padding-right: 8px; padding-left: 12px; font-size: 0.99rem;
  }
  .section, section {flex-direction: column;}
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .callout-sources, .newsletter-cta, .values, .about-team, .background, .privacy-statement, .cookie-policy, .dsgvo-info, .terms-section {
    padding-left: 4px; padding-right: 4px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }
  .cookie-modal {
    width: 95vw;
    min-width: 0;
    padding: 24px 10px 18px 10px;
  }
}
@media (max-width: 480px) {
  h1 {font-size: 1.17rem;}
  h2 {font-size: 1.01rem;}
  .main-nav{gap:10px;font-size: 0.9rem;}
  .card, .feature-grid li, .service-teaser, .testimonial-card {
    padding: 13px 4px 13px 7px;
  }
  .footer-brand, .footer-contact { font-size: 0.95rem;}
  .pricing-table th, .pricing-table td {padding: 8px 7px;font-size:0.93rem;}
}

/*-------------------------------------
  UI MICRO-INTERACTIONS & TRANSITIONS
--------------------------------------*/
button, .cta-btn, .cookie-btn {
  transition: var(--transition);
}
li, .feature-grid li, .service-teaser, .card, .testimonial-card, .value-grid > div, .newsletter-form {
  transition: box-shadow .20s, border-color .16s, transform .13s;
}
.card:hover, .service-block:hover, .feature-grid li:hover, .service-teaser:hover, .fact-item:hover, .report-block:hover, .article-entry:hover {
  box-shadow: 0 8px 42px -15px var(--color-shadow), 0 1.5px 9px -5px var(--color-shadow);
  transform: scale(1.017);
}

/*-------------------------------------
  Z-INDEX & OVERLAP PROTECTION
--------------------------------------*/
/* Header: 100, MobileMenu:1200+, Cookie:3000, CookieModal:4000+ */

/*-------------------------------------
  MISCELLANEOUS
--------------------------------------*/
::-webkit-scrollbar {
  width: 9px;
  background: #F3F3F0;
}
::-webkit-scrollbar-thumb {
  background: #d1d2de;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bbbcc6;
}

/* Remove extra focus outline on mouse usage, but show for keyboard nav */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #154273;
  outline-offset: 2px;
}

/*--------------- END ---------------*/
