/* ==== CSS RESET & BASE ==== */
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: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: #f8f7f3;
  color: #232323;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
a {
  color: #203864;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FDD853;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: bold;
}

/* ==== BRAND FONTS ==== */
h1, h2, h3, h4, .display-font {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  letter-spacing: 0.01em;
  color: #203864;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 12px;
}
p, li, span, div, input, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ==== BRAND COLORS & PREMIUM GOLD ==== */
:root {
  --color-primary: #203864;
  --color-secondary: #1A9477;
  --color-accent: #FDD853;
  --color-gold: #C6A243;
  --color-bg-light: #f8f7f3;
  --color-bg-dark: #1a2233;
  --color-white: #fff;
  --color-black: #232323;
  --shadow-premium: 0 4px 18px 0 rgba(32, 56, 100, 0.09);
  --shadow-gold: 0 2px 8px 0 rgba(198,162,67,0.10);
}

/* ==== SPACING SYSTEM ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==== HEADER/NAV ==== */
header {
  background: var(--color-white);
  box-shadow: 0 1px 12px 0 rgba(32,56,100,0.06);
  position: relative;
  z-index: 120;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 44px;
}
nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
nav a {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  padding: 8px 0;
  transition: color 0.22s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.cta-btn {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-accent) 100%);
  color: var(--color-primary);
  font-size: 1.12rem;
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  outline: none;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 24px;
  display: inline-block;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #DDC27C 0%, #FDD853 100%);
  color: var(--color-primary);
  box-shadow: 0 2px 12px 0 rgba(198,162,67,0.14);
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.25rem;
  color: var(--color-primary);
  padding: 0 10px;
  cursor: pointer;
  z-index: 200;
  transition: color 0.22s;
  margin-left: 14px;
}
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
  outline: 2px solid var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  box-shadow: 2px 0 30px rgba(32,56,100,0.08);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.5,.08,.1,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: var(--color-primary);
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1010;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:focus {
  color: var(--color-gold);
  outline: 2px solid var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 96px 32px 40px 32px;
  width: 100%;
  align-items: flex-start;
  background: var(--color-white);
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  padding: 8px 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(253, 216, 83, 0.07);
  border-bottom: 2px solid var(--color-gold);
}

/* ==== HERO & SECTION LAYOUTS ==== */
.hero-section {
  background: linear-gradient(110deg, #fff 50%, #f6f1db 100%);
  padding: 56px 0 48px 0;
  margin-bottom: 48px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  font-weight: 800;
}
.hero-section .subheadline {
  font-size: 1.25rem;
  margin-top: 6px;
  color: #3a3a3a;
  max-width: 630px;
}

.features-section {
  background: var(--color-white);
  box-shadow: 0 1px 20px 0 rgba(32,56,100,0.04);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Feature Grid & Cards */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid li {
  background: #f8f7f3;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  padding: 28px 24px 24px 24px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(198, 162, 67, 0.08);
  position: relative;
  transition: box-shadow 0.22s, transform 0.15s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 24px 0 rgba(198,162,67,0.12);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

/* ==== SERVICES SECTION ====*/
.services-section .service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-box {
  flex: 1 1 200px;
  background: #f8f7f3;
  border-radius: 15px;
  box-shadow: var(--shadow-premium);
  padding: 28px 22px 22px 22px;
  min-width: 195px;
  max-width: 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(198,162,67,0.10);
  position: relative;
  transition: box-shadow 0.21s, transform 0.16s;
}
.service-box:hover {
  box-shadow: 0 4px 20px 0 rgba(253,216,83,0.11);
  transform: translateY(-2px) scale(1.013);
}
.service-box .price {
  color: var(--color-gold);
  font-weight: 600;
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ==== FACTS GRID (fakten-des-tages) ==== */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.category-filters a {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-gold);
  border-radius: 24px;
  padding: 7px 22px;
  font-weight: 500;
  font-size: 1.01rem;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(198,162,67,0.11);
}
.facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  align-items: stretch;
}
.fact-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-premium);
  padding: 20px 22px;
  flex: 1 1 215px;
  min-width: 200px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(32,56,100,0.07);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.13s;
}
.fact-box:hover {
  box-shadow: 0 8px 32px 0 rgba(32,56,100,0.09);
  transform: translateY(-2px) scale(1.012);
}
.fact-category {
  font-size: 0.9rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.todays-fact-summary {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.22rem;
  margin: 13px 0 14px 0;
}

/* ==== CTA & ABOUT SECTIONS ==== */
.cta-section {
  background: linear-gradient(95deg, #fff 70%, #f6f1db 100%);
  border-radius: 18px;
  box-shadow: 0 1px 12px #e1dccb15;
  padding: 44px 0;
  margin-bottom: 54px;
}
.about-section, .legal-section, .success-section {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 1px 20px 0 rgba(32,56,100,0.04);
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.about-section ul, .legal-section ul {
  margin-top: 14px;
  margin-bottom: 0;
  padding-left: 22px;
}
.about-section ul li, .legal-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}
.about-section ul li::before, .legal-section ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--color-gold);
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 10px;
}

/* ==== CONTACT SECTION ==== */
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-section .contact-details {
  margin-top: 16px;
}
.contact-section img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ==== TEAM SECTION ==== */
.team-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.team-section ul li strong {
  color: var(--color-secondary);
}

/* ==== TESTIMONIALS ==== */
.testimonials-section {
  background: #fff;
  border-radius: 18px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.testimonials-section .testimonial-card,
.subscriber-testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #f8f7f3;
  border: 1px solid rgba(32,56,100,0.08);
  border-radius: 13px;
  padding: 20px 30px 20px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-premium);
  max-width: 600px;
  color: var(--color-black);
  font-size: 1.04rem;
  font-style: italic;
  transition: box-shadow 0.17s;
}
.testimonials-section .testimonial-card:hover,
.subscriber-testimonials .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(32,56,100,0.11);
}
.testimonial-card span {
  font-style: normal;
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 3px;
  font-size: 1rem;
}

.subscriber-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ==== CATEGORY/ARTICLE LISTS, MULTIMEDIA ==== */
.categories-list, .upcoming-events-list, .newsletter-benefits, .newsletter-content-preview, .multimedia-overview {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.categories-list img, .multimedia-overview img, .newsletter-benefits img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.topic-tags span {
  background: #f6f1db;
  color: var(--color-secondary);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 0.93rem;
  font-weight: 500;
}

/* ==== PRICING TABLE (Workshops & Webinare) ==== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  box-shadow: 0 1px 9px rgba(32,56,100,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  background: #f8f7f3;
  border-bottom: 1px solid #ece5c5;
  font-size: 1.04rem;
}
.pricing-table th {
  background: var(--color-white);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.09rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ==== LEGAL SECTION/SUCCESS ==== */
.legal-section, .success-section {
  max-width: 820px;
  margin: 40px auto 60px auto;
  padding: 40px 26px;
}
.legal-section h1, .success-section h1 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}
.success-message {
  font-size: 1.19rem;
  margin-bottom: 26px;
  color: var(--color-secondary);
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  line-height: 1.5;
}
.back-home-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  padding: 0 2px 2px 2px;
  font-size: 1.04rem;
}
.back-home-link:hover, .back-home-link:focus {
  color: var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  margin-top: 60px;
  padding: 36px 0 16px 0;
  box-shadow: 0 -1px 12px 0 rgba(32,56,100,0.05);
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 5px;
}
footer nav a {
  color: var(--color-accent);
  border-bottom: 1.5px solid transparent;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s, border-bottom 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
}
.footer-contact span, .footer-contact img {
  vertical-align: middle;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.footer-small {
  color: #e1e1e1;
  font-size: 0.97rem;
  text-align: left;
  margin-top: 7px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8f7f3;
  box-shadow: 0 -4px 32px 0 rgba(32,56,100,0.09);
  border-top: 2.5px solid var(--color-gold);
  z-index: 12010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 32px;
  animation: cookie-slide-in 0.5s cubic-bezier(.6,.3,.3,1.1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__content {
  flex: 1 1 0;
  color: #232323;
  font-size: 1rem;
  max-width: 730px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  margin-left: 0;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(32,56,100,0.07);
  transition: background 0.15s, color 0.15s, box-shadow 0.19s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-accent) 100%);
  color: var(--color-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(198,162,67,0.14);
}
.cookie-btn.reject {
  background: #e3e1d9;
  color: var(--color-secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c9b786;
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 12020;
  background: rgba(32, 56, 100, 0.32);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: modal-fade-in 0.27s cubic-bezier(.4,.43,.3,.95);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(32,56,100,0.15);
  padding: 34px 28px 28px 28px;
  max-width: 420px;
  width: 96vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-card-fadein 0.37s cubic-bezier(.45,.44,.12,.89);
}
@keyframes modal-card-fadein {
  from { transform: scale(0.94) translateY(16px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--color-gold);
  outline: 2px solid var(--color-accent);
}
.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 18px 0;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}
.cookie-toggle input[type=checkbox] {
  accent-color: var(--color-gold);
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 6px;
  transition: box-shadow 0.14s;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}

/* Essential Cookie always ticked: strict marker */
.cookie-toggle .essential {
  color: var(--color-secondary);
  font-weight: bold;
  margin-left: 2px;
}

/* ==== FLEXBOX ALIGNMENT PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  padding: 28px 22px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1060px) {
  .container {
    max-width: 960px;
    padding: 0 12px;
  }
  .feature-grid, .service-highlights,
  .facts-grid, .card-container, .content-grid, .subscriber-testimonials {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  header .container {
    height: auto;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 6px;
  }
  .feature-grid, .service-highlights, .facts-grid, .subscriber-testimonials {
    gap: 10px;
  }
  .feature-grid li, .service-box, .fact-box {
    min-width: 155px;
    max-width: 95vw;
    padding: 18px 13px 14px 13px;
  }
  .about-section, .legal-section, .success-section, .testimonials-section {
    padding: 18px 6px;
  }
}
@media (max-width: 660px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .logo {
    height: 34px;
  }
  .cta-btn {
    padding: 11px 13px;
    font-size: 1rem;
    margin-left: 10px;
  }
  .hero-section {
    padding: 28px 0 18px 0;
    margin-bottom: 15px;
  }
  h1 {
    font-size: 1.58rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  nav, header nav {
    gap: 10px;
  }
}
@media (max-width: 1200px) {
  .facts-grid, .feature-grid, .service-highlights, .subscriber-testimonials {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .facts-grid, .feature-grid, .service-highlights, .subscriber-testimonials {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .service-box, .fact-box {
    max-width: 98vw;
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    gap: 5px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .contact-section .contact-info {
    gap: 6px;
  }
  .card-container, .facts-grid, .service-highlights, .feature-grid, .subscriber-testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials-section, .about-section, .services-section, .features-section, .cta-section, .legal-section, .success-section {
    padding: 14px 0;
    margin-bottom: 22px;
  }
}
@media (max-width: 488px) {
  .cookie-banner__content {
    font-size: 0.98rem;
    max-width: 99vw;
  }
}

/* ==== MICRO-INTERACTIONS ==== */
button, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal__close {
  outline: none;
  transition: background 0.18s, color 0.14s, box-shadow 0.15s, border 0.14s;
}
button:active, .cta-btn:active, .cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  opacity: 0.87;
  transform: scale(0.97);
}

/* ==== SCROLLBAR for Visual Polish ==== */
body::-webkit-scrollbar {
  width: 12px;
  background: #edeadd;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 6px;
}

/* ==== UTILITY ==== */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-gold   { color: var(--color-gold); }
.bg-gold     { background: var(--color-gold); }
.hide        { display: none !important; }
.show        { display: block !important; }

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ==== PREVENT OVERLAPPING ==== */
.section, .card, .feature-grid li, .service-box, .fact-box, .testimonial-card, .about-section, .legal-section, .success-section {
  margin-bottom: 24px;
}

/* ==== END OF CSS ==== */
