/* --------------------------
   ÖlVision Analyse Style.css
   Vibrant Energetic Theme
   Brand: Seriös, sachlich, modern, energetisch
   Fonts: Oswald (display), Roboto (body)
   Colors:
     --primary: #203043 (deep blue)
     --secondary: #FFD700 (electric yellow)
     --accent: #F4F4F4 (light gray)
   Only Flexbox layouts (never CSS grid, never columns)
-------------------------- */

/* RESET & BASELINE  -------------------------- */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  min-height: 100vh;
  background: var(--accent);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #F4F4F4;
}
a { color: inherit; text-decoration: none; transition: color 0.15s; }
ul, ol { list-style: inside disc; }
img { display: inline-block; max-width: 100%; }
button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

/* --------------------------
   CSS Variables (with Fallbacks)
--------------------------- */
:root {
  --primary: #203043;
  --secondary: #FFD700;
  --accent: #F4F4F4;
  --brand-red: #FF4384;
  --brand-cyan: #06BDE7;
  --white: #fff;
  --black: #191919;
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius: 18px;
  --shadow-xl: 0 8px 32px rgba(32,48,67,0.17);
  --shadow-m: 0 2px 10px 0 rgba(32,48,67,0.1);
  --shadow-hover: 0 4px 18px rgba(32,48,67,0.23);
}

/* TYPOGRAPHY -------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--secondary);
  text-shadow: 0 2px 10px rgba(255,215,0,0.14);
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.12rem; }
p, li {
  font-family: var(--font-body);
  color: #242424;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b { color: var(--primary); font-weight: bold; }
.meta {
  font-size: 0.95em;
  color: var(--brand-red);
  letter-spacing: 0.05em;
}

/* Accessibility Helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* LAYOUT: Container  -------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
}

/* HERO  -------------------------- */
.hero {
  background: linear-gradient(87deg,#06BDE7 0,#FFD700 100%);
  padding: 48px 0 44px 0;
  border-bottom: 5px solid var(--primary);
  box-shadow: 0 4px 44px 0 rgba(6,189,231,0.10);
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 22px;
  text-align: center;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 4px 30px rgba(255,68,0,0.078),0 2px 7px #FFD70033;
}
.hero p {
  color: var(--primary);
  opacity: 0.96;
  font-size: 1.18rem;
  max-width: 620px;
  margin: 0 auto 12px auto;
}

/* NAVIGATION ------------ */
header {
  background: var(--white);
  border-bottom: 2.5px solid var(--primary);
  box-shadow: 0 2px 8px #20304322;
  width: 100%;
  z-index: 101;
  position: sticky;
  top: 0;
}
header > a > img {
  height: 42px;
  margin: 10px 24px 10px 0;
  vertical-align: middle;
}
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  min-height: 64px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
header nav a {
  color: var(--primary);
  border-radius: 100px;
  padding: 6px 18px;
  transition: background 0.18s,color 0.14s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 12px #FFD70030;
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  font-size: 2rem;
  margin-left: auto;
  padding: 5px 18px 4px 18px;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-m);
  z-index: 202;
  transition: background 0.19s, box-shadow 0.17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ffe351;
  box-shadow: 0 4px 14px #FFD70044;
}
/* Hide nav and show burger on mobile */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU -------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--white);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,.04,.27,1.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
  width: 100vw;
  min-height: 100vh;
  box-shadow: 0 8px 56px #203043bb,0 -6px 64px #FFD70044 inset;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.4rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 10101;
  padding: 4px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #ffe351; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 44px 0 0 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 8px 14px 0;
  border-radius: 6px 32px 32px 6px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* MAIN: SECTIONS & FLEX LAYOUTS -------------------------- */
section {
  margin-bottom: 60px;
}
.section, section {
  width: 100%;
  background: transparent;
}

.feature-grid, .tech-overview, .trend-analysis, .articles-grid, .card-container,
.data-highlights, .profit-leaderboard, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid { gap: 28px; }
.tech-overview, .trend-analysis, .articles-grid { gap: 28px; }
.card-grid, .card-container { gap: 24px; }
.data-highlights {
  gap: 22px;
  align-items: stretch;
}
.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;
}

@media (max-width: 900px) {
  .feature-grid, .tech-overview, .trend-analysis, .articles-grid, .card-container,
  .data-highlights, .profit-leaderboard, .content-grid, .card-grid {
    gap: 14px;
  }
}

/* --------------------------
 * CARDS & FEATURE ELEMENTS
--------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 26px 24px 22px 24px;
  max-width: 380px;
  min-width: 210px;
  flex: 1 1 215px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.021);
}
.feature-item img { width: 36px; height: 36px; }

.technology-card, .grid-card, .trend-card, .statistic-counter, .dynamic-comparison-snippet {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 24px 16px 22px 16px;
  flex: 1 1 210px;
  min-width: 185px;
  max-width: 355px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.14s, transform 0.11s;
}
.technology-card:hover, .grid-card:hover, .trend-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.021);
}
.technology-card img { width: 40px; height: 40px; }
.grid-card h3 { color: var(--brand-red); }

/* TESTIMONIAL/CARD -------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  color: #191919;
  margin: 0;
  font-style: italic;
  font-size: 1.15em;
  max-width: 440px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img { width: 32px; height: 32px; border-radius: 50%; }
.testimonial-author span {
  color: var(--primary);
  font-size: 1em;
  font-family: var(--font-display);
}

/* CALL TO ACTION BUTTONS -------------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  font-size: 1.23rem;
  padding: 14px 38px;
  margin-top: 9px;
  min-width: 170px;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.13s, transform 0.13s;
}
.cta.primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2.5px solid var(--primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-cyan);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  border-color: var(--brand-cyan);
  box-shadow: 0 6px 24px #06BDE722;
}
.cta.secondary {
  background: var(--brand-red);
  color: var(--white);
  border: 2.5px solid var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
}
.cta:active {
  transform: translateY(2px) scale(1.01);
  box-shadow: var(--shadow-m);
}

/* SPECIAL BOXES ----------------- */
.callout-box,
.insight-highlights,
.featured-analysis {
  background: var(--brand-cyan);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 24px;
  margin: 22px 0 16px 0;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 28px #06BDE722;
}
.featured-analysis {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 44px #FFD70044;
}
.popular-reports {
  font-size: 1.03rem;
  font-weight: 500;
  margin-top: 12px;
  color: var(--brand-red);
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.trust-badges img { height: 32px; margin-right: 4px; }

/* NEWSLETTER ----------------- */
.newsletter-signup {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px #20304333;
  padding: 18px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.newsletter-signup p { color: var(--secondary); }
.newsletter-signup .cta { margin-top: 0; }
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 9px;
}
.social-links span { color: var(--primary); font-weight: bold; }
.social-links img { width: 27px; }

/* MISC STRUCTURE ------------------------------ */
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FOOTER ------------------------------ */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 32px 0 0 0;
  margin-top: 64px;
  border-top: 5px solid var(--secondary);
}
footer .container { flex-direction: column; }
footer .content-wrapper {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 4px;
}
footer nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  padding: 2px 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #ffee94;
  color: var(--primary);
}
footer .contact-snippet {
  font-size: 1rem;
  color: var(--accent);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 8px;
  align-items: center;
}
footer .contact-snippet img { height: 21px; vertical-align: middle; margin-right: 5px; }
footer .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
footer .social-icons img {
  width: 26px; height: 26px;
  border-radius: 6px;
  transition: box-shadow 0.15s;
  background: var(--white);
  box-shadow: 0 2px 8px #fff2;
  cursor: pointer;
}
footer .social-icons img:hover {
  box-shadow: 0 2px 24px #FFD70044;
}

/* LEGAL TEXT ------------------------- */
.legal-text, .address-block, .contact-details, .support-options {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 24px;
  margin-bottom: 12px;
  color: #222;
  font-size: 1.04rem;
}
.legal-text h2, .legal-text h3, .legal-text h4 {
  color: var(--brand-red);
  font-family: var(--font-display);
}

/* CONTACT/ADDRESS ------------------- */
.contact-details, .address-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details ul, .support-options ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.contact-details li img, .address-block img {
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  opacity: 0.92;
  font-size: 0.98em;
}
.map-embed img { width: 30px; }

/* TABLE (Comparison Table) ------------- */
.comparison-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 28px 20px;
  margin-bottom: 12px;
  font-size: 1.04rem;
}

/* Sidebar / Badges / Misc ------------- */
.trust-badges span {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.07em;
}

/* FEATURED HIGHLIGHT BLOCKS -------------- */
.statistic-counter, .dynamic-comparison-snippet {
  background: var(--white);
  color: var(--brand-red);
  border-left: 6px solid var(--brand-cyan);
  border-radius: var(--radius);
  padding-left: 18px;
  box-shadow: var(--shadow-m);
}

/* DESKTOP RESPONSIVE (2 column cards) */
@media (min-width: 730px) {
  .feature-grid, .tech-overview, .trend-analysis, .articles-grid,
  .data-highlights, .content-grid, .card-grid {
    flex-direction: row;
  }
  .statistic-counter, .dynamic-comparison-snippet {
    min-width: 265px;
    max-width: 400px;
  }
}

/* TABLETS & DESKTOP ADJUSTMENTS --------------- */
@media (min-width: 990px) {
  .container {
    padding-left: 34px; padding-right: 34px;
  }
  section, .section { padding-left: 0; padding-right: 0; }
}

/* MOBILE FIRST RESPONSIVEADJUSTMENTS --------------- */
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section, section {
    padding: 20px 2vw;
    margin-bottom: 38px;
    border-radius: 0;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.03rem; }
  .trust-badges, .social-links, .social-icons {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .content-wrapper { gap: 13px; }
  .feature-grid, .tech-overview, .trend-analysis, .articles-grid, .data-highlights, .content-grid, .card-grid, .profit-leaderboard {
    flex-direction: column;
    gap: 11px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 13px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

/* Newsletter Submission Section Fixes */
@media (max-width: 600px) {
  .newsletter-signup {
    padding: 10px 8px;
  }
}

/* ADAPTIVE FONT SIZES (NO CLAMP USED!) */
@media (max-width: 520px) {
  h1 { font-size: 1.12rem; }
  h2 { font-size: 1rem; }
}

/* MODALS & BANNERS ------------------------- */
/* COOKIE BANNER ------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--secondary);
  z-index: 12340;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  box-shadow: 0 -4px 28px #20304388;
  font-size: 1.06rem;
  transition: transform 0.42s cubic-bezier(.6,.2,.36,1);
  transform: translateY(0);
}
.cookie-banner.hidden { transform: translateY(120%); }
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid var(--secondary);
  padding: 12px 22px;
  transition: background 0.19s, color 0.14s;
  margin: 0 2px;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.accept:hover {
  background: #ffe351;
}
.cookie-btn.reject {
  background: var(--white);
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}
.cookie-btn.reject:hover {
  background: var(--brand-red); color: var(--white);
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings:hover {
  color: var(--brand-cyan);
  border-color: var(--brand-cyan);
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions { margin-top: 8px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left:0;top:0;right:0;bottom:0;
  background: #203043bb;
  z-index: 12500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  min-width: 325px;
  max-width: 98vw;
  border-radius: 1.3em;
  box-shadow: 0 8px 40px #20304333;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 12710;
  animation: modalSlideIn 0.41s cubic-bezier(.7,0,.31,1.08);
  position: relative;
}
@keyframes modalSlideIn {
  from { transform: translateY(46px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--brand-red);
  margin-bottom: 6px;
  font-size: 1.33rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.toggle-switch {
  appearance: none;
  width: 44px; height: 24px;
  background: #eee;
  border-radius: 17px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 2px solid var(--primary);
  transition: background 0.26s;
}
.toggle-switch:checked { background: var(--secondary); }
.toggle-switch::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 3px; top: 2px;
  transition: left 0.2s;
}
.toggle-switch:checked::before {
  left: 21px;
  background: var(--brand-red);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 13px; right: 19px;
  font-size: 1.8em;
  background: none;
  color: var(--brand-red);
  border: none;
  cursor: pointer;
}
.cookie-category.essential label { color: #afadad; font-weight: 600; }

/* --------------------------
   TRANSITIONS, HOVERS, ETC.
--------------------------- */
.card, .feature-item, .trend-card, .grid-card, .technology-card {
  transition: box-shadow 0.16s, transform 0.15s;
}
a, .cta, button, input[type="button"], input[type="submit"] {
  transition: color 0.14s, background 0.17s, border 0.18s;
}

/* MICRO-INTERACTIONS (SHOW INTERACTION!) */
.cta:focus, .cta:active, a:focus, button:focus {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 2px;
  filter: brightness(1.11);
}

/* --------------------------
   UTILITIES
--------------------------- */
.text-section { margin-bottom: 10px; }
ul, ol {
  margin-bottom: 10px;
  padding-left: 22px;
}
ul li, ol li { margin-bottom: 8px; }

/* Hide underline on links inside .contact-snippet or .social-icons */
.contact-snippet a, .social-icons a { text-decoration: none; }

/* SPECIAL: THANK-YOU PAGE CENTERING */
.thank-you-section, .thank-you-success {
  text-align: center;
  padding: 60px 0;
}

/* Hide visually, for accessibility */
.visually-hidden { position: absolute !important; clip: rect(1px,1px,1px,1px); padding:0 !important; border:0 !important; height:1px; width:1px; overflow:hidden; }

/* --------------------------
   PREVENT OVERLAP / SPACING
--------------------------- */
.feature-item, .card, .technology-card, .trend-card, .grid-card, .statistic-counter, .dynamic-comparison-snippet {
  margin-bottom: 20px !important;
}
.card-container, .card-grid, .content-grid, .feature-grid, .tech-overview, .trend-analysis, .articles-grid, .testimonial-card, .data-highlights, .profit-leaderboard {
  gap: 20px;
}

/* Adapt gap and margin on mobile */
@media (max-width: 600px)  {
  .feature-item, .card, .technology-card, .trend-card, .grid-card { min-width: 100%; }
}

/* Adjust inner padding on extra-small screens */
@media (max-width: 400px) {
  .card, .feature-item, .newsletter-signup, .statistic-counter, .dynamic-comparison-snippet {
    padding-left: 7px; padding-right: 7px;
  }
  .cookie-modal { padding: 19px 5vw 19px 5vw; }
}

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