/* =======================
   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,
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #1a2130;
  color: #F7FAF9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 16px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
}

/* =======================
   VARIABLES (with fallback)
   ======================= */
:root {
  --primary: #124A77;
  --secondary: #23A982;
  --accent: #F7FAF9;
  --bg-dark: #1a2130;
  --neon-cyan: #28fcff;
  --neon-blue: #73a7f3;
  --neon-green: #80ffb3;
  --border-radius: 16px;
  --shadow: 0 6px 28px rgba(36, 220, 236, 0.10), 0 1.5px 10px rgba(18,74,119,0.11);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* =======================
   TYPOGRAPHY
   ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.85rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, ul, ol, li, summary, .subheadline {
  font-family: var(--font-body);
  color: #d0e2ee;
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  color: var(--neon-blue);
  font-size: 1.1rem;
  margin-bottom: 22px;
}
strong {
  color: var(--neon-cyan);
  font-weight: 700;
}

.text-section ul,
.included-features-list ul,
.learning-outcomes ul {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 20px;
}
.text-section li,
.included-features-list li,
.learning-outcomes li {
  margin-bottom: 7px;
  position: relative;
}
.text-section li:before,
.included-features-list li:before,
.learning-outcomes li:before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* =======================
   LAYOUT CONTAINERS
   ======================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--border-radius);
}
.cta {
  background: linear-gradient(125deg, var(--primary) 57%, var(--secondary) 100%);
  box-shadow: 0 6px 24px rgba(36, 220, 236, 0.10);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =======================
   FLEXBOX CONTENT GRIDS
   ======================= */
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.feature-grid > div {
  background: rgba(22, 41, 70, 0.93);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.7px solid transparent;
}
.feature-grid > div:hover {
  box-shadow: 0 12px 40px rgba(36, 220, 236, 0.17);
  border-color: var(--neon-cyan);
  transform: translateY(-7px) scale(1.025);
}

.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.pricing-card {
  background: rgba(18,74,119,0.95);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  padding: 26px 22px 32px 22px;
  margin-bottom: 20px;
  border: 1.5px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 12px 40px rgba(36, 220, 236, 0.16);
  transform: translateY(-6px) scale(1.018);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #16294A;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1.6px solid transparent;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 8px 36px rgba(36, 220, 236, 0.13);
  transform: translateY(-5px) scale(1.016);
}

.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: var(--accent);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  color: #152136;
  border: 1.3px solid #e5f1ed;
}
.testimonial-card p {
  color: #292d3e;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #277c68;
  font-weight: 600;
  font-size: 0.97rem;
}
.star-rating img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(65,220,236,0.16));
}

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

/* =======================
   HERO / CALL TO ACTION
   ======================= */
.hero {
  min-height: 340px;
  background: linear-gradient(112deg, #122345 60%, #124A77 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 36px 0 44px 0;
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(18,74,119,0.10);
  position: relative;
}
.hero h1 {
  font-size: 2.6rem;
  color: #28fcff;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 40px rgba(36,220,236,0.07),0 0px 2px #124A77;
}
.hero .subheadline {
  color: #aefbee;
  font-weight: 600;
  font-size: 1.13rem;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: #192438;
  box-shadow: 0 5px 18px rgba(18,74,119,0.10);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 7px 18px;
}
header img {
  width: 172px;
  height: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: #c4e5fa;
  padding: 7px 7px;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #153156;
  color: #22ffe9;
  outline: none;
}
av.main-nav .btn-primary {
  margin-left: 16px;
  background: var(--secondary);
  color: #0e3554;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #23A982;
  margin-left: 18px;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.28s;
  z-index: 1001;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(35, 169, 130, 0.10);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,31,52, 0.98);
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.43s cubic-bezier(.32,0,.28,1), opacity 0.25s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #00ffe0;
  background: transparent;
  border: none;
  margin: 8px 20px 18px 0;
  transition: color var(--transition), background 0.25s;
  padding: 6px 14px;
  border-radius: 10px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(35, 169, 130, 0.13);
  color: #21bda0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  padding-left: 42px;
  padding-top: 8px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: #22ffe9;
  font-family: var(--font-display);
  padding: 11px 0;
  margin-bottom: 2px;
  transition: color var(--transition), background var(--transition);
  border-radius: 8px;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #123a5c;
  color: #80ffb3;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  background: linear-gradient(90deg, #23A982 65%, #28fcff 100%);
  color: #122345;
  padding: 12px 32px;
  font-size: 1.08rem;
  border-radius: 34px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 12px rgba(36, 220, 236, 0.13);
  margin-top: 8px;
  letter-spacing: 0.05em;
  transition: background 0.23s, box-shadow 0.22s, color var(--transition), transform 0.22s;
  position: relative;
  z-index: 10;
}
.btn-primary:focus,
.btn-primary:hover {
  background: linear-gradient(87deg, #28fcff 55%, #23A982 100%);
  color: #0d2437;
  box-shadow: 0 0 0 3px #00ffe028;
  transform: translateY(-2.5px) scale(1.04);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  background: #192438;
  color: #23a982;
  border: 1.7px solid #23a982;
  font-size: 1rem;
  padding: 11px 29px;
  border-radius: 34px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, border 0.2s;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #23a982;
  color: #122345;
}

/* ===== SEARCH BAR, BLOG CARDS ===== */
.search-bar {
  margin-bottom: 18px;
  display: flex;
  width: 100%;
  gap: 14px;
}
.search-bar input[type="search"] {
  width: 100%;
  font-size: 1.06rem;
  padding: 13px 16px;
  border-radius: 13px;
  border: 1.5px solid #23A982;
  outline: none;
  background: #232f45;
  color: #fff;
  box-shadow: 0 2px 11px rgba(36, 220, 236, 0.08);
  transition: border-color 0.18s, background 0.17s;
}
.search-bar input[type="search"]:focus {
  border-color: var(--neon-cyan);
  background: #202841;
}

.blog-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-articles-grid article {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  background: #16294A;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  border: 1.2px solid #19335c;
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-articles-grid article:hover {
  border: 1.7px solid var(--neon-blue);
  box-shadow: 0 8px 32px rgba(36, 220, 236, 0.17);
  transform: translateY(-6px) scale(1.018);
}

.blog-articles-grid h3 {
  color: var(--neon-cyan);
  font-size: 1.17rem;
  margin-bottom: 8px;
}
.blog-articles-grid p {
  color: #d0e2ee;
  margin-bottom: 5px;
}
.blog-articles-grid span {
  color: #23A982;
  font-size: 0.97rem;
  margin-top: auto;
}

.blog-filters, .course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 4px 0;
}
.blog-filters span, .course-filters span {
  color: #28fcff;
  background: #122345;
  font-family: var(--font-display);
  border-radius: 14px;
  padding: 8px 17px;
  font-size: 0.98rem;
  border: 1px solid #23A982;
  font-weight: 500;
  transition: color 0.15s, background 0.17s, border 0.18s;
  cursor: pointer;
}
.blog-filters span:hover, .course-filters span:hover {
  color: #013e4d;
  background: #28fcff;
  border: 1px solid #00ffd4;
}

/****** FAQ & TIMELINE SECTIONS ******/
.faq, .faq-list {
  background: #1c2a41;
  border-radius: var(--border-radius);
  padding: 20px 20px 13px 20px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
  color: #F7FAF9;
  font-size: 1.03rem;
}
.faq strong, .faq-list strong {
  color: var(--neon-green);
}

.opening-hours,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  font-size: 1.01rem;
  color: #C1F7F3;
}

.profile {
  background: rgba(24,40,65,0.97);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 18px 17px 18px;
  border: 1.2px solid #16294A;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 200px;
}
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

/***** Brands/Award Logos *****/
.brands-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0 8px 0;
}
.brands-logos img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px #21bda030);
}
.brands-logos span {
  color: var(--neon-cyan);
  font-family: var(--font-body);
  font-weight: 600;
}

/***** Tables - Feature Comparison *****/
.feature-comparison {
  background: #192438;
  border-radius: var(--border-radius);
  padding: 20px 18px 13px 18px;
  margin-bottom: 24px;
  color: #F7FAF9;
  font-size: 1rem;
  box-shadow: var(--shadow);
}
.feature-comparison h4 {
  color: var(--neon-blue);
  margin-bottom: 10px;
}

.included-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
}
.included-features-list ul {
  flex: 1 1 200px;
  min-width: 200px;
}
.faq {
  flex: 2 1 290px;
  min-width: 180px;
  margin-left: 10px;
}

/****** Timeline for "Meilensteine" ******/
.timeline {
  background: rgba(24,40,65,0.99);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px 13px 13px 22px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.timeline ul {
  margin-top: 6px;
}
.timeline li {
  color: #22ffe9;
}
.timeline li:before {
  background: #23A982;
}

/****** ICON-GRID FOR CONTACT & FOOTER ******/
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 6px 0;
}
.footer-contact div {
  font-size: 0.98rem;
  color: #80ffb3;
}
.footer-contact img {
  width: 22px;
  vertical-align: middle;
  margin-right: 4px;
}

/****** FOOTER ******/
footer {
  background: #16294A;
  padding: 38px 0 12px 0;
  border-top: 2.8px solid #19ada3;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-top a img {
  width: 64px;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #22ffe9;
  font-family: var(--font-display);
  font-size: 0.99rem;
  padding: 5px 0;
  border-bottom: 2.3px solid transparent;
  transition: color 0.19s, border-bottom 0.23s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #23a982;
  border-bottom: 2.3px solid #28fcff;
}
.footer-bottom {
  color: #b7e6e2;
  font-size: 0.94rem;
  text-align: center;
  margin-top: 19px;
}

/***************
  COOKIE CONSENT
***************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: rgba(24,40,65,0.99);
  color: #F7FAF9;
  padding: 23px 19px 18px 19px;
  box-shadow: 0 -2px 20px rgba(36, 220, 236, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1.02rem;
  border-radius: 18px 18px 0 0;
  animation: cookie-fadein 0.32s cubic-bezier(.3,.6,.5,1.12);
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-family: var(--font-display);
  font-size: 1.01rem;
  padding: 10px 22px;
  border-radius: 22px;
  margin-left: 2px;
  font-weight: 600;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s;
}
.cookie-banner .accept {
  background: linear-gradient(96deg, #28fcff 60%, #23A982 100%);
  color: #132f4e;
  box-shadow: 0 2px 9px #23a98211;
}
.cookie-banner .reject {
  background: #23314a;
  color: #ff8a8a;
  border: 1.5px solid #ff8a8a;
}
.cookie-banner .settings {
  background: #23314a;
  color: #28fcff;
  border: 1.5px solid #28fcff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #23a982;
  color: #132f4e;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ff8a8a;
  color: #122345;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #28fcff;
  color: #0c314b;
}

/**** COOKIE MODAL ****/
.cookie-modal-overlay {
  position: fixed!important;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(15,30,44,0.78);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.2s cubic-bezier(.55,0,.35,1);
}
@keyframes fadein {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal {
  background: #1c2a41;
  color: #F7FAF9;
  border-radius: 17px;
  max-width: 500px;
  width: 95%;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 12px 50px rgba(18,74,119,0.14);
  position: relative;
  animation: cookie-modal-fadein 0.25s cubic-bezier(.24,1.2,.48,1);
}
@keyframes cookie-modal-fadein {
  from {opacity:0; transform: scale(0.96) translateY(33px);}
  to {opacity:1; transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  color: var(--neon-cyan);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 13px;
  font-size: 1.5rem;
  color: #ff8a8a;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #2c384c;
  color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category:last-child {
  margin-bottom: 0;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 38px; height: 20px;
  background: #142150;
  border-radius: 12px;
  position: relative;
  outline: none;
  margin-left: 11px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .toggle-switch:checked {
  background: #23A982;
}
.cookie-modal .toggle-switch:before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  background: #F7FAF9;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.18s;
}
.cookie-modal .toggle-switch:checked:before {
  left: 18px;
  background: #22ffe9;
}
.cookie-modal .category-note {
  color: #8cebff;
  font-size: 0.92rem;
}
.cookie-modal .category-essential {
  color: #22ffe9;
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: 9px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 17px;
  margin-top: 27px;
  flex-wrap: wrap;
}
.cookie-modal .accept, .cookie-modal .reject {
  font-family: var(--font-display);
  font-size: 1.09rem;
  padding: 9px 22px;
  border-radius: 22px;
  font-weight: 600;
  border: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s;
}
.cookie-modal .accept {
  background: linear-gradient(96deg, #28fcff 60%, #23A982 100%);
  color: #132f4e;
}
.cookie-modal .reject {
  background: #23314a;
  color: #ff8a8a;
  border: 1.5px solid #ff8a8a;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #23a982;
  color: #132f4e;
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: #ff8a8a;
  color: #122345;
}

/***************
   RESPONSIVE DESIGN
***************/
@media (max-width: 1120px) {
  .feature-grid > div, .blog-articles-grid article, .pricing-card, .profile {
    max-width: 48%;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  .feature-grid, .card-container, .blog-articles-grid, .team-profiles, .pricing-tables, .included-features-list {
    gap: 14px;
  }
  .profile, .feature-grid > div, .pricing-card, .blog-articles-grid article {
    min-width: 210px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }

  .section {   padding: 24px 7px; }
  .cta { padding: 29px 7px; }  
  .hero { padding: 24px 0 30px 0; }

  .feature-grid, .pricing-tables, .blog-articles-grid, .team-profiles, .footer-contact {
    flex-direction: column;
    gap: 13px;
  }

  .feature-grid > div, .pricing-card, .profile, .blog-articles-grid article {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .brands-logos {
    flex-direction: column;
    gap: 7px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .footer-top { flex-direction: column; gap: 10px; }
  .footer-contact { gap: 8px; }
  .footer-nav { gap: 11px; }
  .cookie-banner { flex-direction: column; gap: 13px; padding: 17px 9px 11px 9px; font-size: 0.97rem;}
}
@media (max-width: 600px) {
  html { font-size: 95%; }

  h1 {font-size: 1.62rem;}
  h2 {font-size: 1.23rem;}
  .hero h1 { font-size: 1.5rem; }
  .container { padding: 0 3px; }
  header img { width: 122px; }
  .footer-top a img { width: 36px; }
  .mobile-nav { padding-left: 18px; }
}
@media (max-width: 480px) {
  .section, .cta {padding: 13px 1vw;}
  .container {padding: 0 1vw;}
  .footer-contact {flex-direction: column; gap: 4px;}
}

/* === FLEXBOX Mobile Burger Menu Activation === */
@media (max-width: 992px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/**** Animations & Microinteractions ****/
a, .btn-primary, .btn-secondary, .feature-grid > div, .card, .pricing-card, .profile, .testimonial-card, .blog-articles-grid article, .footer-nav a, .course-filters span, .blog-filters span {
  transition: box-shadow 0.19s, background 0.18s, color 0.18s, border 0.18s, transform 0.17s;
}
/**** Utility Classes ****/
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 22px; }
.mb-2 { margin-bottom: 13px; }
.mt-5 { margin-top: 45px; }
.hide { display: none !important; }

/* ====== End YonderCash Akademie Futuristic Tech CSS ====== */