/* =============================================================
   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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F9FB;
  color: #222238;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .18s;
}
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* =============================================================
   CUSTOM PROPERTIES (Fallback included)
============================================================= */
:root {
  --brand-primary: #1A2233;
  --brand-secondary: #E63946;
  --brand-accent: #F1FAEE;
  --brand-bg: #F8F9FB;
  --brand-card-bg: #fff;
  --brand-muted: #ECECEC;
  --brand-border: #E5E7EB;
  --brand-shadow: 0 3px 18px 0 rgba(32,36,41,0.07);
  --main-font: 'Georgia', 'Times New Roman', Times, serif;
  --display-font: 'Montserrat', 'Georgia', serif;
  --body-font: 'Open Sans', 'Georgia', serif;
  --text-color-main: #232325;
  --text-color-muted: #5B626A;
  --text-color-secondary: #1A2233;
  --text-on-accent: #1A2233;
}

/* Fallbacks */
body {
  background: var(--brand-bg, #F8F9FB);
  color: var(--text-color-main, #232325);
}


/* =============================================================
   GLOBAL TYPOGRAPHY (Elegant Classic)
============================================================= */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--body-font);
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: var(--brand-bg);
  color: var(--text-color-main);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  color: var(--brand-primary);
  font-weight: 500;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.09;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 13px;
  line-height: 1.23;
}
h4 {
  font-size: 1.125rem;
}
p, ul, ol {
  color: var(--text-color-main);
}
p {
  margin-bottom: 14px;
}
subheadline, .subheadline {
  color: var(--text-color-muted);
  font-size: 1.16rem;
  font-style: italic;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: var(--brand-primary);
}

/* ======= Typographic Rhythm ======= */
section + section {
  margin-top: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =============================================================
   CONTAINER HELPERS & FLEXBOX LAYOUTS
============================================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  box-shadow: var(--brand-shadow);
  transition: box-shadow .18s;
  padding: 28px 22px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(32,36,41,0.13);
}
.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;
  margin-bottom: 20px;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--brand-shadow);
  flex-direction: column;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Flex wrappers for layouts on homepage/features */
.features .feature-grid,
ul.benefit-list,
ul.value-icons,
.interview-preview-cards,
.teaser-grid,
.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features .feature-grid > li,
ul.benefit-list > li, ul.value-icons > li,
.interview-preview-cards > article,
.teaser-grid > article,
.team-member-list > li {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  box-shadow: var(--brand-shadow);
  padding: 26px 16px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .20s;
}
.features .feature-grid > li:hover,
ul.benefit-list > li:hover,
.teaser-grid > article:hover,
.interview-preview-cards > article:hover,
.team-member-list > li:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 6px 32px 0 rgba(32,36,41,0.13);
}


/* =============================================================
   NAVIGATION
============================================================= */
header {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  justify-content: flex-start;
  font-family: var(--display-font);
  padding: 0 0 0 7px;
}
.main-nav a {
  font-weight: 400;
  color: var(--brand-primary);
  font-size: 1.05rem;
  padding: 5px 4px;
  border-radius: 6px;
  position: relative;
  transition: color 0.17s, background 0.17s;
}
.main-nav a:not(.cta-primary):hover {
  color: var(--brand-secondary);
  background: var(--brand-accent);
}
.main-nav a.cta-primary {
  background: var(--brand-secondary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: auto;
  transition: box-shadow .16s, background .18s, color .18s;
  box-shadow: 0 2px 16px 0 rgba(230,57,70,0.10);
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: #CE2232;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(230,57,70,0.16);
}
.main-nav img {
  height: 38px;
  margin-right: 8px;
  width: auto;
}

/* Hamburger Mobile
---------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-left: auto;
  z-index: 40;
}

/* Mobile Overlay menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.55,0,.1,1);
  z-index: 1100;
  box-shadow: 0 0 0 70vw rgba(26,34,51,.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 0 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.35rem;
  color: var(--brand-secondary);
  background: none;
  border: none;
  margin-bottom: 14px;
  margin-top: 3px;
  padding: 0 4px;
  z-index: 1201;
  border-radius: 5px;
  transition: background .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-muted);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 5px;
  width: 94vw;
}
.mobile-nav a {
  font-size: 1.16rem;
  color: var(--brand-primary);
  padding: 8px 0;
  border-radius: 4px;
  font-family: var(--display-font);
  font-weight: 400;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-secondary);
  background: var(--brand-accent);
}

/* Hamburger/Navigation Responsive */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 969px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =============================================================
   HERO, CTA, and MAJOR SECTIONS
============================================================= */
.hero, .hero-interview, .newsletter-hero, .cta-premium, .cta-offer, .cta-more-interviews, .cta-newsletter, .confirmation-section {
  background: var(--brand-accent);
  padding: 54px 0 54px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 32px 0 rgba(26,34,51,0.03);
  margin-bottom: 60px;
}
.hero h1, .hero-interview h1,
.newsletter-hero h1, .confirmation-section h1 {
  color: var(--brand-secondary);
  font-size: 2.6rem;
  line-height: 1.09;
  margin-bottom: 0.8em;
  font-weight: 600;
}
.hero .cta-primary, .cta-newsletter .cta-primary, .cta-more-interviews .cta-primary,
.cta-offer .cta-primary, .cta-premium .cta-primary, .confirmation-section .cta-primary,
.cta-newsletter .cta-primary {
  margin-top: 22px;
}

@media (max-width: 768px) {
 .hero, .hero-interview, .newsletter-hero, .cta-premium,
 .cta-offer, .cta-more-interviews, .cta-newsletter, .confirmation-section {
    padding: 36px 0 36px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero h1, .hero-interview h1,
  .newsletter-hero h1, .confirmation-section h1 {
    font-size: 2rem;
  }
}

/* =============================================================
   BUTTONS & CTA
============================================================= */
.cta-primary {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.18rem;
  font-weight: 600;
  padding: 11px 32px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(230,57,70,0.11);
  transition: background 0.18s, color 0.15s, box-shadow .20s, transform 0.21s cubic-bezier(.5,0,.19,1.3);
  margin-top: 12px;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #AE1B29;
  color: #fff;
  box-shadow: 0 6px 25px 0 rgba(230,57,70,0.16);
  transform: translateY(-2px) scale(1.02);
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
  font-size: 1.1rem;
  padding: 10px 26px;
  border-radius: 7px;
  font-family: var(--display-font);
  font-weight: 500;
  transition: background 0.17s, color 0.13s, box-shadow .17s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 3px 12px 0 rgba(30,30,50,0.08);
}

/* =============================================================
   FEATURES & SERVICE CARDS
============================================================= */
.features {
  margin-bottom: 60px;
}
.features .feature-grid {
  justify-content: flex-start;
}
.features .feature-grid img {
  height: 40px; width: 40px;
  margin-bottom: 8px;
  opacity: 0.93;
}
.features .feature-grid h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 9px;
}
.features .feature-grid p {
  font-size: 1rem;
}

.benefit-list img, .value-icons img {
  height: 32px;
  width: 32px;
  margin-right: 8px;
  margin-bottom: 0px;
}

/* =============================================================
   TEASERS, PREVIEWS, ARTICLE GRIDS
============================================================= */
.teaser-grid,
.interview-preview-cards,
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.teaser-grid article, .interview-preview-cards article, .article-previews article {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 13px;
  box-shadow: var(--brand-shadow);
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 335px;
  padding: 24px 17px;
  margin-bottom: 20px;
  transition: box-shadow .19s, border-color .17s;
}
.teaser-grid article:hover, .interview-preview-cards article:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 8px 40px 0 rgba(32,36,41,0.13);
}
.teaser-grid h3, .interview-preview-cards h3, .article-previews h3 {
  font-size: 1.17rem;
}

/* =============================================================
   HIGHLIGHTS & QUICK READS
============================================================= */
.highlights,
.news-feed,
.analizy-list,
.interview-list,
.values-section,
.about-story,
.team-section,
.partnerships,
.faq-section,
.privacy-policy,
.rodo-section,
.terms-section,
.cookies-policy,
.contact-info-section,
.subscribe-form {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--brand-shadow);
  padding: 38px 22px 32px 22px;
}

.news-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 18px;
}
.news-highlight-list li {
  font-size: 1.08rem;
  color: var(--text-color-main);
}
.quick-read-links a {
  font-family: var(--main-font);
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1.08rem;
  transition: color .17s;
}
.quick-read-links a:hover {
  color: #AE1B29;
  text-decoration: underline;
}

/* =============================================================
   TABS & FILTERS
============================================================= */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.category-tabs a {
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--display-font);
  transition: background .17s, color .15s;
  box-shadow: 0 1px 4px rgba(32,36,41,0.06);
}
.category-tabs a:hover, .category-tabs a:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* =============================================================
   TESTIMONIALS
============================================================= */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px 22px 24px;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 22px 0 rgba(30,34,38,0.07);
  flex-direction: column;
  min-width: 0;
  margin-bottom: 20px;
  color: var(--brand-primary);
}
.testimonial-card p {
  color: var(--brand-primary);
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: var(--display-font);
  font-weight: 500;
  color: var(--brand-secondary);
  font-size: 1rem;
  margin-top: 6px;
  letter-spacing: .02em;
}

/* =============================================================
   BADGES & LABELS
============================================================= */
.premium-badge {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 6px;
  padding: 2px 10px 2px 10px;
  font-size: .97em;
  font-family: var(--display-font);
  margin-left: 7px;
  font-weight: 600;
  vertical-align: top;
}
.privacy-note {
  font-size: 0.99rem;
  color: var(--text-color-muted);
  font-style: italic;
  margin-bottom: 9px;
}

/* =============================================================
   FOOTER
============================================================= */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 54px 0 16px 0;
  border-top: 3px solid var(--brand-secondary);
  margin-top: 64px;
  font-size: 1rem;
}
footer nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
footer nav a {
  color: #F1FAEE;
  padding: 6px 9px;
  border-radius: 6px;
  transition: background .17s, color .17s;
  font-size: 1rem;
}
footer nav a:hover {
  background: var(--brand-secondary);
  color: #fff;
}
footer .contact-info {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  font-size: .99rem;
  margin: 0 auto 18px auto;
  max-width: 750px;
  flex-wrap: wrap;
  color: #fff;
  padding: 6px 0;
}
footer .contact-info img {
  height: 44px;
  width: auto;
  margin-right: 6px;
}
.footer-copy {
  font-size: .93rem;
  color: #C2C8D1;
  text-align: center;
  margin-top: 22px;
}
footer .contact-info p{
  color: #fff;
}
/* =============================================================
   COOKIE BANNER & MODAL
============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--brand-primary);
  border-top: 1.5px solid var(--brand-border);
  box-shadow: 0 -2px 30px 0 rgba(26,28,34,0.14);
  z-index: 1500;
  padding: 18px 15px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  transition: transform .27s cubic-bezier(.6,.05,.2,.92), opacity .15s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  max-width: 620px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
}
.cookie-actions button {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 1.09rem;
  background: var(--brand-accent);
  border: 1px solid var(--brand-border);
  color: var(--brand-primary);
  font-family: var(--display-font);
  font-weight: 500;
  transition: background .18s, color .14s, border-color .17s;
}
.cookie-actions button.accept {
  background: var(--brand-secondary);
  color: #fff;
  border: 1px solid var(--brand-secondary);
}
.cookie-actions button.accept:hover {
  background: #C80F26;
  color: #fff;
}
.cookie-actions button.reject {
  background: var(--brand-muted);
  color: var(--brand-primary);
  border: 1px solid var(--brand-border);
}
.cookie-actions button.reject:hover {
  background: #ece3ee;
  border-color: var(--brand-secondary);
}
.cookie-actions button.settings {
  background: #fff;
  color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
}
.cookie-actions button.settings:hover {
  background: var(--brand-accent);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,35,45,0.38);
  z-index: 1550;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 13px;
  max-width: 420px;
  width: 94vw;
  padding: 32px 22px 24px 22px;
  box-shadow: 0 8px 32px 7px rgba(32,36,41,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1560;
}
.cookie-modal-content h3 {
  font-family: var(--main-font);
  font-size: 1.28rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 2rem;
  z-index: 1570;
}
.cookie-modal-content .close-modal:hover {
  background: var(--brand-muted);
  border-radius: 5px;
}

/* Toggle Switch for Cookies */
.cookie-toggle {
  display: flex;
  align-items: center;
  position: relative;
  width: 38px;
  height: 22px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brand-muted);
  border-radius: 22px;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .slider {
  background: var(--brand-secondary);
}
.cookie-toggle .slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(14px);
}

/* Essential cookies always enabled */
.cookie-category .essential {
  font-style: italic;
  color: var(--text-color-muted);
}

/* =============================================================
   RESPONSIVE DESIGN (Mobile-First)
============================================================= */
@media (max-width: 1150px) {
  .container {
    max-width: 97vw;
    padding: 0 5vw;
  }
}
@media (max-width: 968px) {
  .main-nav,
  .content-grid,
  .card-container,
  .teaser-grid,
  .interview-preview-cards,
  .features .feature-grid,
  .benefit-list,
  .value-icons,
  .team-member-list,
  .article-previews {
    flex-direction: column;
    gap: 18px !important;
  }
  .team-member-list > li,
  .features .feature-grid > li,
  ul.benefit-list > li, ul.value-icons > li,
  .interview-preview-cards > article,
  .teaser-grid > article,
  .article-previews > article {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section {
    padding: 27px 8px;
    margin-bottom: 36px;
  }
  .footer-copy {
    margin-top: 14px;
    font-size: .89rem;
  }
  .contact-info img {
    height: 30px;
  }
  .testimonial-card {
    padding: 16px 12px 14px 12px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .testimonial-card, .features .feature-grid, .teaser-grid,
  .interview-preview-cards, .article-previews {
    flex-direction: column;
    gap: 14px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 18px 5px;
    margin-bottom: 28px;
  }
  .team-member-list > li, .features .feature-grid > li, ul.benefit-list > li, ul.value-icons > li,
  .interview-preview-cards > article, .teaser-grid > article, .article-previews > article {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 524px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .contact-info p {
    font-size: 0.93rem;
  }
}

/* =============================================================
   MICRO-INTERACTIONS & TRANSITIONS
============================================================= */
.card, .features .feature-grid > li,
ul.benefit-list > li, ul.value-icons > li,
.teaser-grid > article, .interview-preview-cards > article,
.testimonial-card {
  transition: box-shadow .2s cubic-bezier(.43,0,.2,1.3), border-color .18s; 
}
.card:hover, .features .feature-grid > li:hover, ul.benefit-list > li:hover, ul.value-icons > li:hover, .teaser-grid > article:hover, .interview-preview-cards > article:hover {
  box-shadow: 0 10px 40px 0 rgba(230,57,70,0.19);
  border-color: var(--brand-secondary);
  z-index: 2;
}

/* Button transitions handled with :hover above */

/* Hamburger button animation */
@media (max-width: 968px) {
  .mobile-menu-toggle {
    transition: color .17s, background .17s, transform .24s cubic-bezier(.44,0,.34,1.18);
  }
  .mobile-menu-toggle:active {
    color: var(--brand-secondary);
    transform: scale(1.13);
  }
}

/* Section fade-in (on scroll JS-controlled, placeholder) */
.section, .card, .testimonial-card, .cookie-banner, .cookie-modal-content {
  will-change: opacity, transform;
}

/* Miscellaneous Utilities for breathing room, z-index, etc. */
.z-top { z-index: 2000 !important; }
.w-100 { width: 100% !important; }
.mt-24 { margin-top: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-20 { gap: 20px !important; }

/* =============================================================
   END OF CSS - FLEXBOX ONLY, ELEGANT CLASSIC
============================================================= */