/* ==========================================================================
   Content fuer Experten - Main Stylesheet
   by twenty seconds
   Premium conversion-optimized design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */

:root {
  --cyan: #00a0de;
  --cyan-dark: #0088be;
  --cyan-light: #e8f6fc;
  --cyan-ultra-light: #f2fafd;
  --taupe: #67584d;
  --taupe-dark: #4a3f36;
  --taupe-light: #8a7b70;
  --bg: #ffffff;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --text-muted: #888888;
  --light-bg: #f7f5f3;
  --border: #e8e4e0;
  --border-light: #f0ece8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-cyan: 0 4px 15px rgba(0, 160, 222, 0.3);
  --shadow-cyan-lg: 0 8px 25px rgba(0, 160, 222, 0.35);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. @font-face Declarations
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Titillium Web';
  src: url('/fonts/TitilliumWeb-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  src: url('/fonts/TitilliumWeb-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  src: url('/fonts/TitilliumWeb-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   3. CSS Reset / Base Styles
   -------------------------------------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Titillium Web', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.15rem;
  }
  h3 {
    font-size: 1.45rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.35rem;
  }
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding: 56px 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--light-bg);
}

@media (min-width: 768px) {
  section {
    padding: 88px 0;
  }
}

@media (min-width: 1200px) {
  section {
    padding: 104px 0;
  }
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1200;
  transition: box-shadow var(--transition-base), background var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border-light);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-inner > a:first-child {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

body {
  padding-top: 70px;
}

/* --------------------------------------------------------------------------
   7. Desktop Navigation
   -------------------------------------------------------------------------- */

.desktop-nav {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

.desktop-nav a {
  color: var(--taupe);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: left var(--transition-base), right var(--transition-base);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  left: 0;
  right: 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--cyan);
}

.header-cta {
  display: none !important;
}

@media (min-width: 960px) {
  .desktop-nav {
    display: flex;
  }
  .header-cta {
    display: inline-flex !important;
  }
}

/* --------------------------------------------------------------------------
   8. Mobile Navigation
   -------------------------------------------------------------------------- */

.hamburger {
  z-index: 1100;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--taupe);
  margin: 5px auto;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  border-radius: 2px;
}

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

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

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

.menu-overlay {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  z-index: 1050;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--bg);
  transition: right var(--transition-base);
  padding-top: 80px;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
  display: block;
  padding: 16px 28px;
  color: var(--taupe);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--cyan);
  background: var(--cyan-ultra-light);
  padding-left: 36px;
}

.mobile-menu .btn-primary {
  margin: 24px 28px;
  display: block;
  text-align: center;
}

@media (min-width: 960px) {
  .hamburger {
    display: none;
  }
  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   9. Hero Section
   -------------------------------------------------------------------------- */

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, #ffffff 0%, #f0f9fd 30%, #e4f3fb 55%, #d8eef8 100%);
}

/* Geometric pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 160, 222, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 160, 222, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 60% 60%, rgba(103, 88, 77, 0.03) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(0, 160, 222, 0.015) 60px,
      rgba(0, 160, 222, 0.015) 61px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(0, 160, 222, 0.015) 60px,
      rgba(0, 160, 222, 0.015) 61px
    );
  pointer-events: none;
  z-index: 0;
}

/* Floating decorative circle */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 222, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroFloat 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 15px) scale(1.03); }
  66% { transform: translate(10px, -10px) scale(0.97); }
}

.hero-content {
  max-width: 760px;
  padding: 48px 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 0.55em;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.8em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
    line-height: 1.7;
  }
  .hero-content {
    padding: 64px 20px;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
  align-items: center;
}

.trust-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 160, 222, 0.12);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--taupe);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-badges .badge::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-badges .badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .trust-badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   10. Trust Bar
   -------------------------------------------------------------------------- */

.trust-bar {
  padding: 48px 0;
  background: var(--light-bg);
  border-top: 3px solid var(--cyan);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
}

.trust-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--taupe);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .trust-bar {
    padding: 56px 0;
  }
  .trust-bar-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
  }
  .trust-stat {
    flex: 1;
    max-width: 200px;
  }
  .trust-number {
    font-size: 3rem;
  }
  .trust-label {
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   11. Problem Section (#das-problem)
   -------------------------------------------------------------------------- */

#das-problem {
  background-color: var(--light-bg);
}

.pain-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pain-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-ultra-light) 100%);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: 28px 24px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-card .icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.pain-card-content {
  flex: 1;
}

.pain-card h3 {
  margin-bottom: 0.3em;
  font-size: 1.1rem;
}

.pain-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fallback: cards without .icon-box still look fine */
.pain-card:not(:has(.icon-box)) {
  padding-left: 24px;
}

/* --------------------------------------------------------------------------
   12. Solution / Steps Section (#die-loesung)
   -------------------------------------------------------------------------- */

/* .steps class removed — replaced by .steps-timeline */

/* Steps Timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

/* --- Mobile: vertical flow with connecting line --- */
@media (max-width: 767px) {
  .step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 56px;
    position: relative;
  }
  .step-connector::before {
    content: '';
    display: block;
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--cyan), rgba(0, 160, 222, 0.3));
  }
  .step-connector::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--cyan);
    margin-top: 2px;
  }
}

/* --- Desktop: horizontal flow --- */
@media (min-width: 768px) {
  .steps-timeline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding-top: 58px;
    align-self: flex-start;
    position: relative;
  }
  .step-connector::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), rgba(0, 160, 222, 0.35));
    border-radius: 2px;
  }
  .step-connector::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--cyan);
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .step-connector {
    min-width: 80px;
  }
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  z-index: 1;
  border-top: 3px solid transparent;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--cyan);
}

@media (min-width: 768px) {
  .step-card {
    flex: 1;
  }
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0080b0);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 160, 222, 0.3);
  position: relative;
}

.step-card h3 {
  margin-bottom: 0.35em;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Proof Section (#warum-es-funktioniert)
   -------------------------------------------------------------------------- */

#warum-es-funktioniert {
  background-color: var(--light-bg);
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fact-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--cyan);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.fact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.fact-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 160, 222, 0.15);
}

.fact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .fact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .fact-number {
    font-size: 2.25rem;
  }
}

/* --------------------------------------------------------------------------
   14. Testimonials Section
   -------------------------------------------------------------------------- */

.testimonials-section {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--cyan);
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan-light);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-author-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   15. Offer Section (#angebot)
   -------------------------------------------------------------------------- */

.checklist {
  list-style: none;
  margin-bottom: 36px;
}

.checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  /* CSS checkmark */
}

.checklist li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

/* Value Anchoring */
.value-anchor {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
}

.value-anchor-compare {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-highlight {
  background: linear-gradient(135deg, var(--cyan-ultra-light) 0%, #fff 100%);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 36px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  overflow: hidden;
  animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { border-color: var(--cyan); box-shadow: 0 0 0 0 rgba(0, 160, 222, 0.15); }
  50% { border-color: var(--cyan); box-shadow: 0 0 0 6px rgba(0, 160, 222, 0.06); }
}

.price-highlight p {
  margin: 0;
}

.price-highlight .price-amount {
  color: var(--cyan);
  font-size: 1.6rem;
}

/* --------------------------------------------------------------------------
   16. FAQ Section
   -------------------------------------------------------------------------- */

.faq-section {
  background-color: var(--light-bg);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item.active {
  background: rgba(0, 160, 222, 0.02);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.faq-item.active .faq-question {
  color: var(--cyan);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cyan);
  margin-left: 16px;
  transition: transform var(--transition-base);
  border-radius: 50%;
  background: var(--cyan-ultra-light);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--cyan);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 22px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   17. Final CTA Section
   -------------------------------------------------------------------------- */

.cta-section {
  background:
    linear-gradient(135deg, #009ed8 0%, #00a0de 40%, #00b4f5 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating geometric shapes */
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: ctaFloat1 12s ease-in-out infinite;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transform: rotate(30deg);
  animation: ctaFloat2 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 20px) rotate(15deg); }
}

@keyframes ctaFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(30deg); }
  50% { transform: translate(-20px, -15px) rotate(45deg); }
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.8em;
  font-size: 1.1rem;
}

.cta-section .btn-cta-inverted {
  display: inline-block;
  background: #ffffff;
  color: var(--cyan);
  font-weight: 700;
  padding: 16px 44px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  z-index: 1;
}

.cta-section .btn-cta-inverted:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.cta-section .btn-cta-inverted:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--taupe-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 0;
  font-size: 0.9rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 40px,
      rgba(255, 255, 255, 0.015) 41px
    );
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Footer top: 3-column on desktop */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  padding-bottom: 32px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

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

.footer-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  font-weight: 600;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
  font-weight: 400;
  font-size: 0.82rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .footer-info {
    flex: 1;
    max-width: 380px;
  }

  .footer-links-wrap {
    align-items: flex-end;
  }

  .footer-social {
    justify-content: flex-end;
  }
}

/* --------------------------------------------------------------------------
   19. Buttons
   -------------------------------------------------------------------------- */

.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 36px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-cyan);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-lg);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 160, 222, 0.2);
}

/* Pulsing CTA variant */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-cyan); }
  50% { box-shadow: 0 4px 20px rgba(0, 160, 222, 0.45), 0 0 0 4px rgba(0, 160, 222, 0.1); }
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 14px 34px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

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

.btn-outline:active {
  transform: translateY(0);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-text {
  background: none;
  border: none;
  color: var(--taupe);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px 4px;
  transition: color var(--transition-fast);
}

.btn-text:hover {
  color: var(--text);
}

.small-text {
  font-size: 0.9rem;
  margin-top: 12px;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   20. Cards (generic)
   -------------------------------------------------------------------------- */

.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .card {
    padding: 32px;
  }
}

/* --------------------------------------------------------------------------
   21. Cookie Banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.1);
  padding: 0;
  display: none;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.cookie-banner.visible {
  display: block;
  animation: cookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.cookie-text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn-accept {
  background: var(--cyan);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-cyan);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.cookie-btn-accept:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.cookie-btn-necessary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.cookie-btn-necessary:hover {
  border-color: var(--taupe-light);
  background: var(--light-bg);
}

.cookie-btn-settings {
  background: none;
  border: none;
  color: var(--taupe-light);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 8px 4px;
  transition: color var(--transition-fast);
}

.cookie-btn-settings:hover {
  color: var(--text);
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
  }
  .cookie-text {
    flex: 1;
    margin-right: 24px;
  }
  .cookie-buttons {
    flex-shrink: 0;
  }
}

.cookie-settings {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   21b. Highlight Box
   -------------------------------------------------------------------------- */

.highlight-box {
  background: linear-gradient(135deg, #e8f6fc, #f7f5f3);
  border-left: 4px solid #00a0de;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 40px;
  text-align: center;
}

.highlight-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
}

@media (min-width: 768px) {
  .highlight-text {
    font-size: 1.4rem;
  }
}

/* --------------------------------------------------------------------------
   21c. Source Note
   -------------------------------------------------------------------------- */

.source-note {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 32px;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   21d. Comparison Table
   -------------------------------------------------------------------------- */

.comparison-table-wrapper {
  margin: 40px 0;
  overflow-x: auto;
}

.comparison-table-wrapper h3 {
  text-align: center;
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.comparison-table thead {
  background: #67584d;
  color: #ffffff;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0ece8;
  color: #555;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight-row {
  background: linear-gradient(135deg, #e8f6fc, #f0fbff);
}

.comparison-table .highlight-row td {
  color: #2d2d2d;
  font-weight: 500;
  border-bottom: none;
}

.comparison-table .per-article {
  display: block;
  font-size: 0.8rem;
  color: #999;
  font-weight: 400;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }
}

/* --------------------------------------------------------------------------
   21e. Format Grid
   -------------------------------------------------------------------------- */

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.format-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0ece8;
  transition: all 0.3s ease;
}

.format-card:hover {
  border-color: #00a0de;
  box-shadow: 0 4px 12px rgba(0, 160, 222, 0.1);
}

.format-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-icon svg {
  width: 28px;
  height: 28px;
  stroke: #00a0de;
  fill: none;
  stroke-width: 1.5;
}

.format-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d2d2d;
}

@media (min-width: 768px) {
  .format-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   21f. Footer Inner
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   21g. Micro-copy
   -------------------------------------------------------------------------- */

.micro-copy {
  font-size: 0.85rem;
  color: #888;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   22. Utility Classes
   -------------------------------------------------------------------------- */

.text-center {
  text-align: center;
}

.text-cyan {
  color: var(--cyan);
}

.bg-light {
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 0.35em;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* Gradient text effect */
.text-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, #0077aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Interactive card hover */
.card-hover {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Icon container */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--cyan-light);
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-box--lg {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
}

.icon-box--cyan {
  background: var(--cyan);
  color: #fff;
}

/* Section divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.divider--left {
  margin-left: 0;
}

/* Highlighted text */
.highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 160, 222, 0.12) 60%);
  padding: 0 4px;
}

/* --------------------------------------------------------------------------
   23. Animations
   -------------------------------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered fade-in delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }
.fade-in:nth-child(7) { transition-delay: 0.48s; }
.fade-in:nth-child(8) { transition-delay: 0.56s; }

/* Count-up number animation target */
.count-up {
  display: inline-block;
  transition: opacity 0.4s ease;
}

/* Smooth base transitions */
a,
button,
input,
textarea,
select {
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
  .btn-pulse {
    animation: none;
  }
  .price-highlight {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   24. Magazine Page
   -------------------------------------------------------------------------- */

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.article-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-image {
  transform: scale(1.03);
}

.article-card-body {
  padding: 24px;
}

.article-card-body h3 {
  margin-bottom: 0.4em;
  transition: color var(--transition-fast);
}

.article-card:hover .article-card-body h3 {
  color: var(--cyan);
}

.article-card-body .teaser {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1em;
  line-height: 1.65;
}

.article-card-body .read-more {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-card-body .read-more::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

.article-card:hover .article-card-body .read-more::after {
  transform: translateX(4px);
}

.article-card-body .read-more:hover {
  color: var(--cyan-dark);
}

@media (min-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card-image {
    height: 220px;
  }
}

/* --------------------------------------------------------------------------
   25. Press Page
   -------------------------------------------------------------------------- */

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.press-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  border-top: 3px solid var(--cyan);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.press-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.press-card h3 {
  margin-bottom: 0.4em;
}

.press-card .date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8em;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.press-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-box {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--cyan);
  transition: transform var(--transition-fast);
}

.contact-box:hover {
  transform: translateY(-1px);
}

.contact-box h3 {
  margin-bottom: 0.3em;
  color: var(--taupe);
}

.contact-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-box a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.contact-box a:hover {
  color: var(--cyan-dark);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--taupe);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn-download::before {
  content: '\2193';
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-download:hover {
  border-color: var(--cyan);
  background: var(--cyan-ultra-light);
  color: var(--cyan);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   26. About Page
   -------------------------------------------------------------------------- */

.portrait {
  border-radius: 50%;
  max-width: 280px;
  width: 100%;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.about-content {
  max-width: 720px;
}

.about-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .about-layout {
    display: flex;
    align-items: flex-start;
    gap: 56px;
  }
  .portrait {
    margin: 0;
    flex-shrink: 0;
    max-width: 260px;
  }
}

/* --------------------------------------------------------------------------
   27. Legal Pages (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 20px;
}

.legal-page h1 {
  margin-bottom: 1em;
}

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

.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
  margin-bottom: 1em;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
}

.legal-page ul {
  list-style: disc;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--cyan-dark);
}

/* --------------------------------------------------------------------------
   28. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Small phones */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .btn-primary {
    width: 100%;
    padding: 14px 24px;
  }
  .hero-content {
    padding: 32px 8px;
  }
  .trust-badges .badge {
    font-size: 0.82rem;
    padding: 8px 14px;
  }
  .section-title {
    margin-bottom: 36px;
  }
  section {
    padding: 40px 0;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Desktop nav breakpoint */
@media (min-width: 960px) {
  /* Already handled above in nav sections */
}

/* Large desktop */
@media (min-width: 1200px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-content {
    max-width: 800px;
  }
  .fact-grid {
    gap: 28px;
  }
  .steps {
    gap: 0;
  }
}

/* --------------------------------------------------------------------------
   29. Print Styles
   -------------------------------------------------------------------------- */

@media print {
  .site-header,
  .cookie-banner,
  .mobile-menu,
  .menu-overlay,
  .hamburger {
    display: none !important;
  }
  body {
    padding-top: 0;
    color: #000;
    background: #fff;
  }
  section {
    padding: 24px 0;
    background: #fff !important;
    page-break-inside: avoid;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
