/* ---------------------------
   Reset & Base Styles
----------------------------*/
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,
main, 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1B2838;
  background-color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  background: #fff;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B2838;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, a:focus {
  color: #F2B134;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
}
b, strong {
  font-weight: 700;
}

/* ---------------------------
   Brand Colors & Fonts
----------------------------*/
:root {
  --color-primary: #1B2838;
  --color-secondary: #F2B134;
  --color-accent: #E0E6ED;
  --color-electric-blue: #1366E6;
  --color-hot-pink: #FE297B;
  --color-bright-green: #14CF6C;
  --color-violet: #7E46DF;
  --color-dark: #1B2838;
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ---------------------------
   Layout Containers
----------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(30,45,72,0.05);
}

@media (min-width: 992px) {
  .content-wrapper {
    gap: 32px;
  }
}

/*----------------------------
    Typography Hierarchy
-----------------------------*/
h1, .hero-section h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -1px;
  color: var(--color-electric-blue);
  margin-bottom: 12px;
  line-height: 1.15;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-hot-pink);
  margin-bottom: 10px;
  line-height: 1.22;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-bright-green);
  margin-bottom: 8px;
}
h4 {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-electric-blue);
  margin-bottom: 6px;
}
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  h1, .hero-section h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
}

/*----------------------------
    Header & Navigation
-----------------------------*/
header {
  background: var(--color-primary);
  padding: 0;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 18px 20px;
}
header img {
  height: 48px;
  margin-right: 12px;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  color: #fff;
  font-weight: 700;
  padding: 6px 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.15s;
}
nav a:hover, nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-hot-pink);
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-hot-pink);
  color: #fff!important;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 800;
  border-radius: 30px;
  box-shadow: 0 5px 20px 0 rgba(254,41,123,0.14);
  letter-spacing: 0.03em;
  border: none;
  padding: 13px 32px;
  cursor: pointer;
  margin-left: 18px;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  text-shadow: 0 1px 3px rgba(30,45,72,0.07);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-bright-green);
  color: #fff!important;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 24px 0 rgba(14,207,108,0.21);
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-secondary);
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 8px 16px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 50;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(242,177,52,0.11);
}
/* Hamburger and mobile nav */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,40,56,0.97);
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.86, 0, 0.07, 1);
  padding: 32px 24px 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 16px;
  margin-right: 8px;
  border-radius: 10px;
  padding: 5px 15px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(254,41,123,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 19px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-weight: 800;
  padding: 18px 4px 8px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 1px;
  transition: color 0.18s, border 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2.5px solid var(--color-hot-pink);
}

@media (max-width: 1050px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 900px) {
  .mobile-menu { display: none!important; }
}

/*----------------------------
    Hero Section
-----------------------------*/
.hero-section {
  background: linear-gradient(90deg, #E0E6ED 85%, #FE297B 100%);
  padding: 66px 0 32px 0;
  min-height: 260px;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(123,70,223,0.08);
}
.hero-section .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.hero-section .content-wrapper {
  max-width: 700px;
  gap: 20px;
  padding: 0;
}
.hero-section h1 {
  color: var(--color-electric-blue);
}
.hero-section p {
  color: var(--color-primary);
  font-size: 1.08rem;
  margin-bottom: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 38px 0 16px 0;
  }
  .hero-section .container {
    flex-direction: column;
    gap: 0;
  }
  .hero-section .content-wrapper {
    padding: 0;
    width: 100%;
  }
}

/*-----------------------------
    Features Grid & Cards
-------------------------------*/
.features-grid, .profile-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 32px 0 18px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(123,70,223,0.05);
  padding: 22px 22px 18px 22px;
  width: 100%;
  max-width: 314px;
  min-width: 220px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.17s;
}
.feature-item:hover {
  border-color: var(--color-bright-green);
  box-shadow: 0 7px 32px 0 rgba(20,207,108,0.11);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.feature-item h3 {
  color: var(--color-bright-green);
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.profile-cards {
  gap: 24px;
}
.profile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(242,177,52,0.08);
  border-left: 6px solid var(--color-hot-pink);
  padding: 20px 22px 18px 24px;
  width: 100%;
  max-width: 370px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.17s;
}
.profile-card:hover {
  box-shadow: 0 8px 32px 0 rgba(254,41,123,0.13);
  border-left-color: var(--color-electric-blue);
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 1050px) {
  .features-grid, .profile-cards {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features-grid, .profile-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/*-----------------------------
    USP & Timeline List
------------------------------*/
.usp-list {
  margin: 18px 0 8px 0;
  padding-left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-electric-blue);
}
.usp-list li {
  background: #E0E6ED;
  border-radius: 11px;
  color: var(--color-hot-pink);
  font-weight: 600;
  padding: 7px 14px 7px 14px;
  font-size: 0.98rem;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  border: 1.7px solid #FE297B11;
  transition: background 0.18s, color 0.18s;
}
.usp-list li:hover {
  background: var(--color-hot-pink);
  color: #fff;
}
.timeline-list {
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline-list li {
  padding-left: 0px;
  font-weight: 600;
  color: var(--color-electric-blue);
}

/*-----------------------------
    Tables (Vergleich)
------------------------------*/
table {
  width: 100%;
  border-radius: 12px;
  background: #fff;
  border-collapse: collapse;
  margin-bottom: 24px;
  box-shadow: 0 1px 14px 0 rgba(27,40,56,0.07);
  overflow: hidden;
}
thead {
  background: var(--color-electric-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
}
th, td {
  text-align: left;
  padding: 13px 13px;
  font-size: 0.99rem;
}
th {
  color: #fff;
  letter-spacing: 0.03em;
}
tbody tr {
  border-bottom: 1.9px solid #E0E6ED;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody td {
  color: var(--color-dark);
}
tbody tr:hover {
  background: #f9fafb;
}

/*-----------------------------
    News Feed & Analysen
------------------------------*/
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.news-feed h3 {
  color: var(--color-hot-pink);
  font-size: 1.13rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.analysis-preview {
  background: #E0E6ED;
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px 0 rgba(123,70,223,0.05);
  transition: box-shadow 0.18s, background 0.17s;
}
.analysis-preview:hover {
  background: #fff0f7;
  box-shadow: 0 6px 22px 0 rgba(254,41,123,0.09);
}

/*-----------------------------
    Contact Details & Trust Signals
------------------------------*/
.contact-details {
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
}
.contact-details ul {
  flex: 0 1 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--color-dark);
  gap: 10px;
}
.trust-signals {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-signals img {
  width: 28px;
  height: 28px;
  margin-bottom: 0;
}
.trust-signals span {
  color: var(--color-bright-green);
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
  padding: 0 0 6px 0;
}

/*-----------------------------
    Testimonials
------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7FAFD;
  border-radius: 18px;
  box-shadow: 0 1px 14px 0 rgba(27,40,56,0.04);
  color: #333;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-bright-green);
  font-size: 1.1rem;
  font-family: var(--font-display);
  transition: box-shadow 0.18s, border-color 0.18s, background 0.18s;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #202A39;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: var(--color-hot-pink);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(14,207,108,0.09);
  border-left: 5px solid var(--color-electric-blue);
  background: #fff;
}

/*---------------------------
    CTA Banner
---------------------------*/
.cta-banner {
  background: linear-gradient(90deg, #FE297B 70%, #14CF6C 120%);
  padding: 48px 0 40px 0;
  margin-bottom: 0;
  box-shadow: 0 5px 22px 0 rgba(254,41,123,0.08);
}
.cta-banner .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cta-banner h2 {
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
}
.cta-banner .cta-primary {
  margin-left: 0;
  background: #E0E6ED;
  color: var(--color-hot-pink)!important;
  font-weight: 900;
  box-shadow: 0 4px 20px 0 rgba(255,255,255,0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
}
.cta-banner .cta-primary:hover {
  background: var(--color-bright-green);
  color: #fff!important;
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 8px 28px 0 rgba(14,207,108,0.22);
}

/*-----------------------------
   Footer
-------------------------------*/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 34px 0 14px 0;
  border-top: 5px solid var(--color-hot-pink);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.18s, border 0.16s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-bright-green);
}
.footer-contact {
  margin-top: 12px;
  text-align: center;
  color: #E0E6ED;
  font-size: 0.97rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-contact img {
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-bottom: -2px;
}
header img[alt="ÖlKompass"], .footer-contact img {
  filter: grayscale(0%) opacity(0.90);
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}

/*-----------------------------
    Confirmation Section
------------------------------*/
.confirmation-section {
  background: #E0E6ED;
  padding: 48px 0 44px 0;
  border-radius: 0 0 30px 30px;
  margin-bottom: 42px;
  box-shadow: 0 6px 24px 0 rgba(30,45,72,0.06);
}
.confirmation-section .content-wrapper {
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.confirmation-section h1 {
  color: var(--color-bright-green);
}
.confirmation-section p {
  color: var(--color-electric-blue);
}

/*-----------------------------
   Responsive Flex Patterns
------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(155,163,175,0.10);
  transition: box-shadow 0.15s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(14,102,230,0.15);
  transform: scale(1.03) rotate(-1deg);
}
.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: 768px){
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/*----------------------------
   Section Spacing & Gaps
-----------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px){
  .section, section {
    padding: 24px 0 24px 0;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px!important;
  }
}

/*----------------------------
   Utility / Micro-interactions
-----------------------------*/
[tabindex]:focus, button:focus {
  outline: 2px solid var(--color-hot-pink);
  outline-offset: 1px;
}
.button, button, .cta-primary {
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, transform 0.13s, box-shadow 0.15s;
}

/* SVG Icon Coloring for Brand Accent */
img[alt*="Icon"] {
  filter: none;
}
img[src$='.svg'] {
  max-width: 45px;
}

/*----------------------------
   Cookie Consent Banner & Modal
-----------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 3px solid var(--color-hot-pink);
  box-shadow: 0 -2px 24px 0 rgba(27,40,56,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 20px 18px 20px;
  z-index: 2222;
  gap: 10px;
  animation: cookie-slideup 0.42s cubic-bezier(0.25, 1, 0.5, 1) 1;
}
.cookie-banner p {
  color: var(--color-dark);
  font-size: 0.99rem;
  max-width: 600px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 600;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
button.cookie-accept, button.cookie-reject {
  background: var(--color-bright-green);
  color: #fff;
  border-radius: 25px;
  padding: 9px 28px;
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
  border: 2px solid var(--color-bright-green);
}
button.cookie-reject {
  background: #fff;
  color: var(--color-hot-pink);
  border-color: var(--color-hot-pink);
  font-weight: 700;
  transition: background 0.11s, color 0.14s;
}
button.cookie-accept:hover, button.cookie-accept:focus {
  background: var(--color-electric-blue);
  border-color: var(--color-electric-blue);
  color: #fff;
}
button.cookie-reject:hover, button.cookie-reject:focus {
  background: var(--color-hot-pink);
  color: #fff;
}
button.cookie-settings {
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 22px;
  border: 2px solid var(--color-bright-green);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 8px 22px;
  transition: background 0.14s, color 0.14s;
}
button.cookie-settings:hover, button.cookie-settings:focus {
  background: var(--color-bright-green);
  color: #fff;
}
@media (max-width: 480px){
  .cookie-banner{
    padding: 15px 5px 10px 5px;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cookie-banner p {
    font-size: 0.95rem;
  }
}

@keyframes cookie-slideup {
  from { transform: translateY(120%); opacity: .3; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 2500;
  background: #fff;
  box-shadow: 0 30px 56px rgba(27,40,56,0.18);
  border-radius: 20px;
  padding: 38px 32px 32px 32px;
  width: 95%;
  max-width: 412px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-show 0.42s cubic-bezier(0.25, 1, 0.5, 1) 1;
}
@keyframes cookie-modal-show {
  from {rotate: -4deg; transform: translate(-50%,-50%) scale(0.74); opacity: 0;}
  to   {rotate: 0deg;   transform: translate(-50%,-50%) scale(1);   opacity: 1;}
}
.cookie-modal .modal-head {
  font-size: 1.23rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--color-hot-pink);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
}
.cookie-modal label {
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--color-primary);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-bright-green);
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
.cookie-modal .always-on {
  color: var(--color-hot-pink);
  font-weight: 900;
  font-size: 1rem;
  margin-left: 3px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: none;
  color: var(--color-dark);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 5;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover{
  color: var(--color-hot-pink);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-end;
}

@media (max-width: 520px){
  .cookie-modal {
    max-width: 98vw;
    padding: 13vw 2vw 7vw 2vw;
  }
  .cookie-modal .modal-head {
    font-size: 1rem;
  }
}

/* Hide cookie modal by default */
.cookie-modal.hidden {
  display: none;
  opacity: 0;
}

/*-----------------------------
   Miscellaneous &  Accessibility
------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #E0E6ED;
  border-radius: 10px;
}

/* Add a little focus halo for all interactive elements */
a:focus, button:focus, .cta-primary:focus {
  box-shadow: 0 0 0 3px #FE297B40;
}

/*-----------------------------
   Vibrant Animated Accents
------------------------------*/
.cta-primary::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 30px;
  opacity: 0.14;
  background: linear-gradient(90deg, #FE297B 65%, #1366E6 100%);
  transition: opacity 0.18s;
}
.cta-primary:hover::after { opacity: 0.27; }

/*----------------------------------
   Ensure no elements overlap
----------------------------------*/
section, .container, .content-wrapper, .features-grid, .profile-cards, .usp-list, .testimonial-card, .footer-nav, .news-feed, .analysis-preview, .contact-details, .timeline-list{
  margin-bottom: 20px;
}
.features-grid>*, .profile-cards>*, .usp-list>*, .news-feed>*, .analysis-preview, .testimonial-card{
  margin-bottom: 0;
}

/*----------------------------
    Print styles (minimal)
----------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none!important; }
  body { background: #fff; color: #000; }
  section, .section { box-shadow: none!important; }
}
