/* ============================================================
   MindLotus — Shared Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  /* System font stack — no external font CDN, GDPR-friendly (no IP leak to Google Fonts). */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
               Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
               'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: #4ade80; text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* --- Header / Nav --- */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}
.site-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.site-nav .logo:hover { text-decoration: none; }
.site-nav .logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.site-nav .nav-links { display: flex; gap: 24px; }
.site-nav .nav-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.site-nav .nav-links a:hover { color: #4ade80; text-decoration: none; }

/* --- Hero --- */
header.hero {
  text-align: center;
  padding: 80px 20px 60px;
}
header.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
header.hero p {
  font-size: 1.2rem;
  color: #cbd5f5;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #1e293b;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34,197,94,0.2);
  text-decoration: none;
}

/* --- Sections --- */
.section {
  padding: 80px 20px;
  text-align: center;
}
.section h2 {
  font-size: 2.2rem;
  color: #fff;
  margin: 0 0 12px;
}
.section p {
  color: #cbd5f5;
  font-size: 1.1rem;
}

/* --- Cards / Grids --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: left;
}
.card h3 { color: #fff; margin: 0 0 8px; }
.card p, .card ul { color: #94a3b8; font-size: 0.95rem; }
.card ul { padding-left: 18px; margin: 10px 0 0; }
.card ul li { margin-bottom: 4px; }

/* --- Pricing --- */
.price-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.price-card h3 { color: #fff; margin: 0 0 4px; }
.price-card .price {
  font-size: 2rem;
  color: #4ade80;
  margin: 6px 0 12px;
}
.price-card .includes {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 6px;
}
.price-card ul {
  color: #94a3b8;
  font-size: 0.92rem;
  padding-left: 18px;
  margin: 8px 0 0;
}
.price-card ul li { margin-bottom: 4px; }
.price-card.featured {
  border-color: rgba(74,222,128,0.3);
  box-shadow: 0 0 30px rgba(74,222,128,0.06);
}

/* --- Highlight text --- */
.highlight { color: #4ade80; font-weight: 600; }

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
  font-size: 0.9rem;
  max-width: 1100px;
  margin: 0 auto;
}
footer .footer-imprint {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.7;
}
footer .footer-imprint strong { color: #94a3b8; }
footer .footer-imprint a { color: #94a3b8; }
footer .footer-imprint a:hover { color: #4ade80; }
footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 16px;
}
footer .footer-links a { color: #94a3b8; font-size: 0.9rem; }
footer .footer-links a:hover { color: #4ade80; }
footer .copyright { margin: 0; color: #64748b; font-size: 0.8rem; }

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-page {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px 80px;
}
.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.legal-page .meta {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.4rem;
  color: #fff;
  margin: 36px 0 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-page h3 {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin: 20px 0 6px;
}
.legal-page p, .legal-page li {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-page ul, .legal-page ol {
  padding-left: 20px;
  margin: 8px 0;
}
.legal-page li { margin-bottom: 4px; }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.9rem;
}
.legal-page table th,
.legal-page table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-page table th { color: #e2e8f0; font-weight: 600; }
.legal-page table td { color: #94a3b8; }
.legal-page .notice {
  background: rgba(74,222,128,0.08);
  border-left: 3px solid #4ade80;
  padding: 14px 18px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: #cbd5f5;
}
.legal-page .back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #4ade80;
  font-size: 0.9rem;
}

/* --- Table of Contents --- */
.toc {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.toc ol {
  padding-left: 18px;
  margin: 0;
}
.toc li {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.toc a { color: #4ade80; }

/* --- Small disclaimer --- */
.disclaimer-bar {
  text-align: center;
  padding: 20px;
  color: #475569;
  font-size: 0.8rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   Card + screenshot pair
   Each .card-group is a grid item containing a .card on top and a
   full-card-width screenshot below it (outside the card).
   ============================================================ */
.card-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0; /* allow grid column to shrink correctly */
}
.card-group > .card {
  width: 100%;
}
.card-shot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #020617;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 14px 30px rgba(2,6,23,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-shot-img:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 18px 36px rgba(74,222,128,0.12);
}

/* --- Responsive --- */
@media (max-width: 640px) {
  header.hero h1 { font-size: 2.2rem; }
  .section h2 { font-size: 1.6rem; }
  .site-nav { flex-direction: column; gap: 12px; }
  .site-nav .nav-links { gap: 16px; }
  .legal-page h1 { font-size: 1.5rem; }
  .card-shot-img { border-radius: 14px; }
}
