:root {
  --bg: #1A1612;
  --surface: #221D18;
  --surface2: #2B241D;
  --accent: #D9A24B;
  --secondary: #C28A35;
  --cream: #F2E9DC;
  --text: #F2E9DC;
  --muted: #A8967E;
  --border: #3A3128;
  --footer: #100D0A;
}

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

html,
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  padding-top: 76px;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 220px;
}

.site-header .logo img,
.site-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

footer .logo img,
.footer-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 76px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  font-size: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.btn {
  display: inline-block;
  background: var(--accent);
  border: none;
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
}

.btn:hover {
  background: var(--secondary);
  color: var(--bg);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(242, 233, 220, 0.1);
  color: var(--cream);
}

.btn-dark {
  background: var(--bg);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--footer);
}

.hero,
.hero-page {
  position: relative;
  background-image:
    linear-gradient(rgba(20, 16, 14, 0.38), rgba(20, 16, 14, 0.48)),
    url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -76px;
  padding: 110px 24px 80px;
}

.hero-preise {
  background-image:
    linear-gradient(rgba(20, 16, 14, 0.38), rgba(20, 16, 14, 0.48)),
    url("/images/hero-preise.webp");
}

.hero-reseller {
  background-image:
    linear-gradient(rgba(20, 16, 14, 0.38), rgba(20, 16, 14, 0.48)),
    url("/images/hero-reseller.webp");
}

.hero-kontakt {
  background-image:
    linear-gradient(rgba(20, 16, 14, 0.38), rgba(20, 16, 14, 0.48)),
    url("/images/hero-kontakt.webp");
}

.hero-content {
  width: min(720px, 100%);
  color: var(--cream);
}

.personal-label {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
}

.personal-tag {
  display: inline-block;
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-sub {
  color: rgba(242, 233, 220, 0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-line {
  font-size: 13px;
  color: rgba(242, 233, 220, 0.65);
  letter-spacing: 0.5px;
}

h1,
h2,
h3,
.section-title,
.popup-title {
  font-family: "Cormorant", serif;
  font-weight: 600;
  color: var(--cream);
}

.section {
  padding: 100px 24px;
}

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

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

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

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 40px;
}

.stats-bar-gold {
  background: var(--accent);
  color: var(--bg);
  padding: 48px 24px;
}

.stats-bar-gold .stat-value {
  font-family: "Cormorant", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--bg);
}

.stats-bar-gold .stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.personal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.personal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.08);
}

.personal-card.featured {
  border-color: var(--accent);
}

.personal-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.personal-card p,
.card-features {
  color: var(--muted);
  font-size: 14px;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.card-duration {
  font-family: "Cormorant", serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.card-price {
  font-family: "Cormorant", serif;
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 4px;
}

.price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.card-monthly {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  margin-bottom: 24px;
}

.card-features li {
  padding: 4px 0;
}

.save-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.08);
}

.step-num {
  font-family: "Cormorant", serif;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.08);
}

.bento-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--muted);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-image {
  min-height: 320px;
  overflow: hidden;
  background: var(--surface2);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.split-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.image-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: var(--surface2);
}

.image-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.split-content {
  background: var(--surface);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 24px;
  line-height: 1.3;
}

.check-list {
  list-style: none;
  margin-bottom: 28px;
}

.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.08);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.review-meta {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: "Cormorant", serif;
  font-size: 18px;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.08);
}

.blog-card-img img {
  width: 100%;
  display: block;
}

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

.blog-card h3 {
  font-size: 20px;
  margin: 8px 0 12px;
  line-height: 1.3;
}

.mx-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.final-cta-my {
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 100px 24px;
}

.final-cta-my h2 {
  color: var(--bg);
  margin-bottom: 32px;
  line-height: 1.3;
}

.site-footer {
  background: var(--footer);
  color: var(--cream);
  padding: 80px 24px 40px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--muted);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(242, 233, 220, 0.85);
  font-size: 14px;
}

.brand-col p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.copyright {
  max-width: 1100px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(242, 233, 220, 0.5);
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 13, 10, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup-overlay.active {
  display: flex;
}

.popup-modal-dark {
  background: var(--surface);
  border: 1px solid var(--accent);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border-radius: 18px;
}

.popup-lead {
  font-family: "Cormorant", serif;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 12px;
}

.popup-old {
  color: var(--muted);
  text-decoration: line-through;
}

.popup-price {
  font-family: "Cormorant", serif;
  font-size: 32px;
  color: var(--accent);
  margin: 8px 0 16px;
}

.popup-countdown {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.popup-close {
  background: none;
  border: none;
  color: var(--muted);
  margin-top: 16px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.08);
}

.contact-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.reseller-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reseller-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 8px 28px rgba(217, 162, 75, 0.12);
}

.rating-breakdown {
  max-width: 480px;
  margin: 0 auto 48px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  font-size: 14px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

.stat-value {
  font-family: "Cormorant", serif;
  font-size: 48px;
  color: var(--accent);
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.blog-article h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 16px 0 24px;
}

.blog-article p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.blog-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin-top: 40px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .grid,
  .cards,
  [class*="grid"],
  [class*="cards"],
  [class*="bento"],
  [class*="row"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .grid > *,
  .cards > *,
  [class*="grid"] > *,
  [class*="row"] > *,
  [class*="bento"] > * {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    flex: none !important;
  }

  [class*="review"] > *,
  [class*="bewertung"] > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  h1 {
    font-size: 38px !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: 28px !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  .site-header .logo img,
  .site-logo {
    height: 34px !important;
    width: auto !important;
    max-width: 118px !important;
  }

  footer .logo img,
  .footer-logo {
    height: 30px !important;
    width: auto !important;
    max-width: 100px !important;
  }

  .header-inner {
    padding: 0 16px;
    gap: 8px;
  }

  .logo {
    max-width: 118px;
  }

  footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  footer .brand-col,
  footer [class*="logo"] {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  footer .copyright {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  .mobile-cta-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #D9A24B !important;
    color: #1A1612 !important;
    text-align: center !important;
    padding: 16px !important;
    z-index: 9999 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: block !important;
    text-decoration: none !important;
    font-family: "Inter", sans-serif !important;
  }

  body {
    padding-bottom: 60px !important;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .header-inner .btn-primary {
    display: none;
  }

  .section {
    padding: 64px 20px;
  }

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

  .split-section {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .split-image,
  .split-image img {
    min-height: 240px;
  }

  .image-banner img {
    height: 240px;
  }

  .split-content {
    padding: 48px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none !important;
  }
}
