:root {
  --bg: #FFFBF5;
  --surface: #FFFFFF;
  --surface-2: #FFF3E8;
  --accent: #2E7D32;
  --secondary: #1B5E20;
  --terracotta: #D84315;
  --gold: #C9A227;
  --footer: #2C2018;
  --text: #2C2018;
  --muted: #8C7B6B;
  --border: #F0D9C0;
  --white: #FFFFFF;
}

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

html,
body {
  overflow-x: hidden;
  background: var(--bg);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.65;
  padding-top: 72px;
}

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

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

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 84px 0;
}

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

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

.mx-tag {
  display: inline-block;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.25);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

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

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

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.26);
}

.btn-ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(46, 125, 50, 0.08);
  color: var(--secondary);
}

.hero {
  background-image: linear-gradient(rgba(255, 251, 245, 0.88), rgba(255, 251, 245, 0.88)),
    url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-page {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 50vh;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-preise {
  background-image: linear-gradient(rgba(255, 251, 245, 0.86), rgba(255, 251, 245, 0.86)),
    url("/images/hero-preise.webp");
}

.hero-reseller {
  background-image: linear-gradient(rgba(255, 251, 245, 0.86), rgba(255, 251, 245, 0.86)),
    url("/images/hero-reseller.webp");
}

.hero-kontakt {
  background-image: linear-gradient(rgba(255, 251, 245, 0.86), rgba(255, 251, 245, 0.86)),
    url("/images/hero-kontakt.webp");
}

.hero-content {
  max-width: 950px;
  padding: 40px 24px;
}

.italian-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 9px 18px;
  margin-bottom: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px 0;
}

.trust-strip {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip .check {
  color: var(--accent);
  font-weight: 700;
}

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

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
}

.content-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.content-card p {
  color: var(--muted);
}

.content-card .flag {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.intl-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.stats-bar {
  background: var(--accent);
  color: var(--white);
  padding: 40px 24px;
}

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

.stat-value {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}

.step-card.italian {
  border-left: 4px solid var(--accent);
  background: var(--surface-2);
}

.step-num {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 10px;
}

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

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 24px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(46, 125, 50, 0.14);
}

.price-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.save-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--footer);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  margin-left: 8px;
}

.price-card .duration {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
}

.price-card .price {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 46px;
  font-weight: 700;
  margin: 10px 0;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.pricing-monthly {
  color: var(--muted);
  font-size: 14px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

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

.price-features li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

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

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
}

.bento-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 25px;
  margin-bottom: 8px;
}

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

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

.split-image {
  overflow: hidden;
  min-height: 320px;
}

.split-content {
  background: var(--surface-2);
  border-left: 1px solid var(--border);
  padding: 58px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.split-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

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

.check-list li {
  padding: 6px 0;
  color: var(--muted);
}

.check-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 700;
  margin-bottom: 4px;
}

.review-date {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.review-text {
  color: var(--muted);
  font-size: 14px;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  border: 0;
  background: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
}

.faq-question span {
  color: var(--accent);
  font-size: 24px;
}

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

.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: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin: 10px 0;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 14px;
  flex: 1;
}

.blog-card a {
  font-weight: 700;
}

.final-cta {
  text-align: center;
  padding: 98px 24px;
}

.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 66px);
  margin-bottom: 24px;
}

.final-cta-green {
  background: var(--accent);
  color: var(--white);
}

.final-cta-green h2 {
  color: var(--white);
}

.final-cta-green .btn-primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.final-cta-green .btn-ghost {
  border-color: var(--white);
  color: var(--white);
}

.site-footer {
  background: var(--footer);
  color: #E8D8CA;
  padding: 64px 0 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: 23px;
}

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

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

.footer-links a {
  color: #E8D8CA;
}

.footer-links a:hover {
  color: #F3E8DD;
}

.copyright {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 216, 202, 0.22);
  text-align: center;
  font-size: 13px;
  color: #D1BFAE;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px;
}

.reseller-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.reseller-feature {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.reseller-feature strong {
  color: var(--accent);
}

.reseller-feature p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

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

.reseller-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  padding: 40px 26px;
}

.contact-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 52px 24px 74px;
}

.legal-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 28px;
  margin: 28px 0 10px;
}

.legal-content p {
  color: var(--muted);
}

.blog-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 46px 24px 84px;
}

.blog-article h1 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  margin: 14px 0 12px;
}

.blog-article h2 {
  font-family: "Playfair Display", serif;
  font-size: 31px;
  margin: 34px 0 10px;
}

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

.blog-cta {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 28px;
  margin-top: 34px;
  text-align: center;
}

.blog-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 8px;
}

.blog-cta p {
  color: var(--muted);
}

.rating-breakdown {
  max-width: 760px;
  margin: 0 auto 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.rating-bar {
  height: 8px;
  background: #F4E4D3;
  border-radius: 999px;
}

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

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(44, 32, 24, 0.82);
  align-items: center;
  justify-content: center;
}

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

.popup-modal {
  width: min(440px, 90%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 26px;
  text-align: center;
}

.popup-deal {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.popup-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

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

.popup-price {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 42px;
  margin-top: 6px;
}

.popup-countdown {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 22px;
  font-weight: 700;
}

.popup-close {
  margin-top: 10px;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
}

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

.error-page h1 {
  font-family: "Playfair Display", serif;
  font-size: 100px;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .pricing-grid,
  .reviews-grid,
  .blog-grid,
  .reseller-plans,
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-cards,
  .step-cards,
  .contact-grid,
  .reseller-features {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-content {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  body {
    background: #FFFBF5;
    padding-bottom: 66px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 26px 18px;
  }

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

  .pricing-grid,
  .reviews-grid,
  .blog-grid,
  .reseller-plans,
  .bento-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-cta-bar {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #2E7D32 !important;
    color: #FFFFFF !important;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 16px;
    display: block !important;
  }
}

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