/* === Grundlayout === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  color: #4CAF50;
  text-decoration: none;
}

a:hover {
  color: #388e3c;
}

/* === Header === */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem 0.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.text-fett {font-weight:bold}







.logos img {
  width: 100px;
  height: 50px;
}





.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}



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

.site-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4CAF50;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #4CAF50;
  cursor: pointer;
}

/* === Navigation === */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  color: #4CAF50;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #388e3c;
}







/* === H1 Titel === */
.page-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 1rem;
  color: #333;
}


.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.nav-buttons button {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-buttons button:hover {
  background: #388e3c;
}

/* === Inhaltsabschnitte === */
section {
  padding: 2rem;
  margin: auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

/* === Webseitenvorschau === */
.website-preview img,
.website-screenshot img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.preview-note,
.screenshot-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* === Content Summary Boxen === */
.content-summary {
  background: #f0f4f8;
  border-left: 6px solid #ccc;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.content-summary.success {
  border-left-color: #2e7d32;
  background: #e8f5e9;
}

.content-summary.error {
  border-left-color: #c62828;
  background: #ffebee;
}

.content-summary.warning {
  border-left-color: #f57c00;
  background: #fff3e0;
}

/* === Footer === */
.site-footer {
  background: #f0f4f8;
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  border-top: 1px solid #ddd;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
}

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

.footer-links a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* === Responsive Anpassungen === */
@media (max-width: 1050px) {
  
  .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1000;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
  display: flex;          /* fehlt aktuell */
  flex-direction: column;
  gap: 1rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 15rem;       /* Abstand nach unten, damit der Button nicht überlappt */
  list-style: none;       /* entfernt Standardpunkte */
}

  .main-nav ul li {
    text-align: center;
  }

  .page-title {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}

























footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  color: white;
  margin: 0 8px;
  font-size: 20px;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #f39c12;
}




/* Vollbild Overlay */
#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  z-index: 9999;
  display: none; /* erst unsichtbar */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Text */
#loader p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

/* Sanduhr mit CSS */
.hourglass {
  width: 40px;
  height: 40px;
  border: 8px solid #3498db;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

/* Dreh-Animation */
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}










.meta-accordion {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.meta-accordion h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-row {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.meta-row summary {
  cursor: pointer;
  padding: 0;
  list-style: none;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 1rem;
}

.meta-cell {
  flex: 1 1 25%;
  padding: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}

.meta-cell.label {
  font-weight: 600;
}

.meta-cell.success {
  color: #2e7d32;
}

.meta-cell.warning {
  color: #f9a825;
}

.meta-cell.error {
  color: #c62828;
}

.meta-info {
  padding: 1rem;
  background: #fff;
  border-top: 1px solid #eee;
  color: #444;
}

.meta-info p {
  margin-bottom: 0.5rem;
}
/* Responsive */
@media (max-width: 768px) {
  .meta-grid {
    flex-direction: column;
  }

  .meta-cell {
    flex: 1 1 100%;
    padding: 0.25rem 0;
  }

  .logo h1 {
    font-size: 1.3rem;
  }
}

.seo-status {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.seo-status h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}




.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.status-box {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.status-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.status-box p {
  font-weight: bold;
  margin-bottom: 1rem;
}

.status-box ul {
  padding-left: 1.2rem;
  margin: 0;
}

.status-box li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Farbklassen */
.status-box.red {
  border-left: 6px solid #c62828;
}

.status-box.yellow {
  border-left: 6px solid #f9a825;
}

.status-box.green {
  border-left: 6px solid #2e7d32;
}
.restart-analysis {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.restart-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
}










.restart-analysis p {
  margin-bottom: 1.5rem;
  color: #444;
}

.restart-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.restart-form input[type="url"] {
  flex: 1 1 60%;
  min-width: 280px;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.restart-form button {
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.restart-form button i {
  margin-right: 0.5rem;
}
.wdf-idf-analysis {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.wdf-idf-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}





.wdf-summary {
  background: #fffbe6;
  border-left: 6px solid #f9a825;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}

.wdf-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #555;
}

.wdf-note a {
  color: #4CAF50;
  text-decoration: underline;
}


.content-analysis {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.content-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}






.content-summary {
  background: #fffbe6;
  border-left: 6px solid #f9a825;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}
.keyword-analysis {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.keyword-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}





.content-summary {
  background: #fffbe6;
  border-left: 6px solid #f9a825;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  color: #444;
}

.meta-row {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.meta-row summary {
  cursor: pointer;
  padding: 0;
  list-style: none;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 1rem;
  justify-content: center;
  text-align: center;
}

.meta-cell {
  flex: 1 1 25%;
  padding: 0.5rem;
  font-size: 0.95rem;
  color: #333;
  border-right: 1px solid #eee;
}

.meta-cell:last-child {
  border-right: none;
}

.meta-cell.label {
  font-weight: 600;
}

.meta-cell.success {
  color: #2e7d32;
}

.meta-cell.warning {
  color: #f9a825;
}

.meta-cell.error {
  color: #c62828;
}

.meta-info {
  padding: 1rem;
  background: #fff;
  border-top: 1px solid #eee;
  color: #444;
}

.meta-info p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .meta-grid {
    flex-direction: column;
  }

  .meta-cell {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .meta-cell:last-child {
    border-bottom: none;
  }
}
.link-analysis {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.link-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.image-analysis {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.image-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resource-analysis {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.resource-analysis h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recent-sites {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.recent-sites h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
}

.recent-sites p {
  margin-bottom: 1rem;
  color: #444;
}

.site-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.site-list li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #333;
}

.site-list i {
  color: #4CAF50;
  margin-right: 0.5rem;
}

.recent-sites .cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}
.analysis-navigation {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.analysis-navigation h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}







.website-screenshot {
  padding: 3rem 2rem;
  margin-bottom: 35px;
  max-width: 1200px;
}

.website-screenshot h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}







.screenshot-box {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.screenshot-box img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.screenshot-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}





















/* index */



.hero {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #e8f5e9, #ffffff);
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}


/* Responsive */
@media (max-width: 768px) {

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

  .hero p {
    font-size: 1rem;
  }
}
.cta {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}
.vorteile h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #4CAF50;
}
.faq h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #4CAF50;
}
.kontakt h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #4CAF50;
}

.features, .vorteile, .faq, .kontakt {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.feature {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
}
.features h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #4CAF50;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.feature-box i {
  color: #4CAF50;
  margin-bottom: 0.5rem;
}

.feature-box h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #222;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

.vorteile ul {
  list-style: none;
  padding-left: 0;
}

.vorteile li {
  margin-bottom: 0.8rem;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  color: #4CAF50;
}

.faq-item p {
  margin-bottom: 1.5rem;
  color: #444;
}

.kontakt form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt input,
.kontakt textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.kontakt button {
  padding: 0.75rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.mission {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.mission h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #4CAF50;
}

.mission p {
  margin-bottom: 1rem;
  color: #444;
}

.mission .cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

.site-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.site-list li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #333;
}

.site-list i {
  color: #4CAF50;
  margin-right: 0.5rem;
}













/*preise*/

.pricing-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.pricing-section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #4CAF50;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.price-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  width: 350px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  font-size: 2rem;
  color: #4CAF50;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: #777;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #388e3c;
}

.featured {
  border: 2px solid #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}
















































/* support */
.support-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.support-section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #4CAF50;
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.support-whatsapp,
.support-form {
  flex: 1 1 45%;
}

.support-whatsapp h3,
.support-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.support-whatsapp p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.qr-box {
  margin-top: 1rem;
  text-align: center;
}

.qr-box img {
  width: 180px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.qr-box p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 1rem;
  font-weight: bold;
}

form input,
form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.5rem;
  font-size: 1rem;
}

form button {
  margin-top: 1.5rem;
  font-size: 1rem;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #388e3c;
}











































/* features */
.features-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.features-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4CAF50;
}
.features-intro {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.features-intro h2 {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #4CAF50;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}


















































/* check */
.heros {
  text-align: center;
  padding: 4rem 2rem;
  background: #e8f5e9;
}

.heros h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e7d32;
}

.heros p {
  font-size: 1.2rem;
  color: #555;
}

.check-form {
  margin-top: 2rem;
}

.check-form input {
  padding: 0.75rem;
  width: 300px;
  max-width: 80%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.check-form button {
  padding: 0.75rem 1.5rem;
  margin-left: 1rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.check-form button:hover {
  background: #388e3c;
}

.results-section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.features-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.features-section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #4CAF50;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}

















/* datenschutz */
.privacy {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.privacy h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #4CAF50;
}

.privacy h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #4CAF50;
}

.privacy p {
  margin-bottom: 1rem;
  color: #444;
}

.privacy .cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

















/* impressum */
.impressum {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-bottom: 35px;
}

.impressum h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #4CAF50;
}

.impressum h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #4CAF50;
}

.impressum p {
  margin-bottom: 1rem;
  color: #444;
}

.impressum .cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}








.img_tabelle {width:100%;border-collapse:collapse}
.img_tabelle_top_l {padding:12px;text-align:center}
.img_tabelle_top_r {padding:12px;text-align:left}
.img_tabelle_l {border:none;border-bottom:1px solid #ccc;width:130px;padding:12px;text-align:center}
.img_tabelle_r {border:none;border-bottom:1px solid #ccc;padding:12px;text-align:left}
.img_tabelle_bild {max-width:100px;max-height:100px}


























/* Container */
.seo-score.side-by-side {
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(16,24,40,0.06);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: #0f172a;
}

/* Kopfbereich fixiert Überschrift-Ausrichtung */
.score-header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.score-title {
  margin: 0;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.score-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}
.score-meta a { color: #1f6feb; text-decoration: none; }
.score-meta a:hover { text-decoration: underline; }
.meta-sep { color: #94a3b8; }

/* Inhaltliches Layout */
.score-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.score-visual {
  flex: 0 0 200px;
  padding-top: 20px;
  margin-top: 20px;
}
.score-info {
  flex: 1;
}

/* Score-Ring */
.ring-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}
.ring {
  width: 180px; height: 180px;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: #edf2f7;
  stroke-width: 12;
}
.ring-progress {
  fill: none;
  stroke-linecap: round;
  stroke-width: 12;
  stroke: #22c55e; /* wird per JS ggf. angepasst */
}
.ring-center {
  position: absolute;
  text-align: center;
}
.ring-value {
  font-size: 34px;
  font-weight: 800;
}
.ring-label {
  font-size: 13px;
  color: #64748b;
}

/* Breakdown Balken */
.score-note {
  margin: 4px 0 12px;
  color: #475569;
}
.breakdown {
  display: grid;
  gap: 10px;
}
.break-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.break-label { color: #334155; font-weight: 600; }
.break-val { color: #0f172a; font-weight: 700; }
.break-bar {
  margin-top: 4px;
  height: 8px;
  background: #eef2f7;
  border-radius: 999px;
  overflow: hidden;
}
.break-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #86efac);
}

/* Responsiv */
@media (max-width: 780px) {
  .score-layout { flex-direction: column; }
  .score-visual { flex: none; }
}



.h-tag-chart {
  margin-top: 10px;
}
.h-tag-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.h-tag-label {
  width: 40px;
  font-weight: bold;
}
.h-tag-bar {
  flex: 1;
  background: #eee;
  height: 20px;
  position: relative;
}
.h-tag-fill {
  background: #4caf50;
  height: 100%;
  color: #fff;
  font-size: 12px;
  text-align: center;
}


.carousel {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  padding-bottom: 25px;
  position: relative;
}

.carousel-track {
  display: flex;
  will-change: transform;
}
.carousel-item {
  flex: 0 0 auto;
  width: 120px;
  margin: 0 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}
.carousel-item img {
  display: block;
  width: 100px;
  height: 50px; margin-left: 10px; margin-top: 10px; 
  object-fit: cover;
}
.carousel-item .caption {
  padding: 10px;
  font: 500 12px/1.4 system-ui, sans-serif;
  text-align: center;
}
.carousel:hover .carousel-track {
  animation-play-state: paused;
}