/* ============================================
   FONTS – Inter (lokal gehostet, DSGVO-konform)
   ============================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --color-primary: #1a2a3a;
  --color-accent: #c8a864;
  --color-secondary: #2d4a5e;
  --color-bg: #f8f6f3;
  --color-bg-white: #ffffff;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-border: #e2ddd5;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  color: var(--color-primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li { margin-bottom: 0.35rem; }

blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-bg);
  font-style: italic;
  color: var(--color-text-light);
}

blockquote cite,
blockquote .cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--color-bg-white);
}

.section--dark {
  background-color: var(--color-primary);
  color: #ffffff;
}

.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

.section--dark a {
  color: var(--color-accent);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--color-accent);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #b89854;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  z-index: 1100;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 1050;
  padding: 6rem 2rem 2rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 0;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:hover {
  color: var(--color-accent);
}

.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--color-bg) 0%, #eae6df 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: #b89854;
  border-color: #b89854;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 168, 100, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.problem-item {
  padding: 1.5rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-white);
  border-radius: 0 8px 8px 0;
}

.problem-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.problem-item p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

.problem-closing {
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
}

/* ============================================
   SOLUTION / RESULT BOXES
   ============================================ */
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.result-box {
  padding: 2rem;
  background: var(--color-bg-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.result-box h3 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.result-box p {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ============================================
   TIMELINE / STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--color-bg-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  padding: 2rem;
  background: var(--color-bg);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.testimonial blockquote {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

.testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================================
   OFFER / CHECKLIST
   ============================================ */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.offer-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2.25rem;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--color-border);
}

.offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-bg-white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--color-bg);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 500px;
  text-align: left;
}

.cta-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.cta-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.section--dark .btn-primary:hover {
  background: #b89854;
  border-color: #b89854;
  color: var(--color-primary);
}

.section--dark .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.section--dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-details {
  margin-top: 2rem;
}

.about-details ul {
  list-style: none;
  padding: 0;
}

.about-details li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.about-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.about-link {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
}

/* ============================================
   MAGAZIN / BLOG CARDS
   ============================================ */
.magazin-intro {
  max-width: 800px;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card-content h3 a {
  color: var(--color-primary);
}

.blog-card-content h3 a:hover {
  color: var(--color-accent);
}

.blog-card-teaser {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}

.blog-card-link:hover {
  color: var(--color-secondary);
}

/* ============================================
   BLOG ARTICLE
   ============================================ */
.article-page {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
}

.article-container {
  max-width: 780px;
  margin: 0 auto;
}

.article-hero-image {
  margin: 1.5rem 0 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
}

/* Table of Contents */
.toc {
  background: var(--color-bg);
  border-radius: 12px;
  border-left: 3px solid var(--color-accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.toc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
}

.toc li a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
}

.toc li a::before {
  content: counter(toc-counter);
  color: var(--color-accent);
  font-weight: 600;
  flex-shrink: 0;
}

.toc li a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* Article Content */
.article-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.article-content h2:first-child {
  border-top: none;
  padding-top: 0;
}

.article-content h3 {
  margin-top: 1.5rem;
}

.article-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--color-secondary);
}

/* Article CTA Block */
.article-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-border);
}

.article-cta-box {
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.article-cta-box h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.article-cta-box p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.article-cta-box a {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
}

/* ============================================
   PRESS PAGE
   ============================================ */
.press-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.press-date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.press-card h3 {
  margin-bottom: 0.5rem;
}

.press-card p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.press-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.press-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.press-btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.press-btn-primary:hover {
  background: var(--color-secondary);
  color: #ffffff;
}

.press-btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.press-btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Media Assets */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.media-item {
  background: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.media-preview {
  padding: 1.5rem;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.media-preview img {
  max-height: 120px;
  width: auto;
}

.media-info {
  padding: 1.25rem;
}

.media-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Contact boxes */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-box {
  padding: 2rem;
  background: var(--color-bg-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.contact-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* PM Detail */
.pm-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.pm-back:hover {
  color: var(--color-accent);
}

.pm-dateline {
  font-weight: 700;
  color: var(--color-primary);
}

.pm-boilerplate {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-border);
}

.pm-boilerplate h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.pm-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 0;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-align: center;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-text {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-family);
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-primary);
  transition: all 0.2s ease;
}

.cookie-btn:hover {
  border-color: var(--color-accent);
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.cookie-btn-accept:hover {
  background: #b89854;
}

/* Cookie Settings Modal */
.cookie-settings {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  z-index: 10001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-settings.show {
  display: block;
}

.cookie-settings-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.cookie-settings-overlay.show {
  display: block;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-setting-item:last-child {
  border-bottom: none;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
}

.legal-page h1 {
  margin-bottom: 2rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
}

/* ============================================
   PAGE TOP PADDING (for fixed header)
   ============================================ */
.page-top {
  padding-top: calc(var(--header-height) + 3rem);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .result-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .nav-links,
  .nav > .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 280px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-header img {
    max-width: 250px;
    margin: 0 auto;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
