/* ================================
   with.fizz — Landing Page v3
   ================================ */

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

:root {
  --ember:       #FF5C3A;
  --ember-light: #FF7A58;
  --mint:        #72D8B0;
  --lilac:       #B09FFF;
  --gold:        #FFD166;
  --bg:          #FDF8F2;
  --text:        #1A1228;
  --muted:       #6B6280;
  --subtle:      #9B94A2;
  --night:       #16101F;
  --radius:      18px;
  --radius-pill: 30px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Container ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-ember {
  background: var(--ember);
  color: #fff;
}
.btn-ember:hover {
  background: var(--ember-light);
  transform: translateY(-1px);
}

.btn-lilac {
  background: var(--lilac);
  color: #fff;
}
.btn-lilac:hover {
  background: #9d8fff;
  transform: translateY(-1px);
}

.btn-mint {
  background: var(--mint);
  color: var(--night);
}
.btn-mint:hover {
  background: #5ecf9f;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--ember);
  border: none;
}
.btn-white:hover { background: #fff5f3; }

.btn-outline-ember {
  background: transparent;
  color: var(--ember);
  border: 1.5px solid var(--ember);
}
.btn-outline-ember:hover {
  background: rgba(255, 92, 58, 0.06);
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 242, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(26, 18, 40, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ember);
}

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

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  padding: 80px 0 72px;
  text-align: center;
}

.fizz-float {
  animation: fizz-sway 4s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 16px;
  overflow: hidden;
  height: 200px;
}

.fizz-float img {
  width: 300px;
  height: auto;
  display: block;
  margin: -20px auto 0;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.1) 78%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 30%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.1) 78%, transparent 95%);
}

@keyframes fizz-sway {
  0%   { transform: translateX(0)    rotate(0deg); }
  25%  { transform: translateX(-7px) rotate(-2.5deg); }
  50%  { transform: translateX(0)    rotate(0deg); }
  75%  { transform: translateX(7px)  rotate(2.5deg); }
  100% { transform: translateX(0)    rotate(0deg); }
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 5vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subline {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

.hero-hint {
  font-size: 12px;
  color: var(--subtle);
}

/* ── TOOLS ── */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.tool-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  border: 0.5px solid rgba(26, 18, 40, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.tool-card:hover {
  box-shadow: 0 8px 32px rgba(26, 18, 40, 0.07);
  transform: translateY(-2px);
}

.tool-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.tool-badge-lilac {
  background: #EEE9FF;
  color: var(--lilac);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.tool-badge-mint {
  background: #E8FBF3;
  color: #1A7558;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.tool-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.tool-subline {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.45;
}

.tool-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.tool-hint {
  font-size: 11px;
  color: var(--subtle);
  margin-bottom: 20px;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: gap 0.15s;
  margin-top: 16px;
}
.tool-link:hover { gap: 9px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }

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

.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 0.5px solid rgba(26, 18, 40, 0.09);
}

.quote-mark {
  font-family: 'Fredoka', sans-serif;
  font-size: 36px;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.45;
}

.quote-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
  font-style: italic;
}

.quote-card cite {
  font-size: 12px;
  color: var(--subtle);
  font-style: normal;
  font-weight: 500;
}

/* ── NEWSLETTER OBEN (ruhig, weiß) ── */
.newsletter-top {
  background: #fff;
  border-top: 0.5px solid rgba(26, 18, 40, 0.08);
  border-bottom: 0.5px solid rgba(26, 18, 40, 0.08);
  padding: 64px 0;
  text-align: center;
}

.newsletter-top-fizz {
  margin-bottom: 20px;
}

.newsletter-top h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.newsletter-top .nt-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.nt-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
}

.nt-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(26, 18, 40, 0.15);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  min-width: 180px;
  outline: none;
  transition: border-color 0.15s;
}
.nt-form input::placeholder { color: var(--subtle); }
.nt-form input:focus { border-color: var(--ember); }

.nt-hint {
  font-size: 11px;
  color: var(--subtle);
}

.nt-thanks {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  padding: 14px 0;
}
.nt-thanks.visible { display: block; }

/* ── FAQ ── */
.faq { background: var(--bg); }

.faq-list {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 0.5px solid rgba(26, 18, 40, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--ember); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 92, 58, 0.1);
  color: var(--ember);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.15s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ember);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

/* Mini-Formular im FAQ (F4) */
.faq-mini-form-wrap {
  margin-top: 14px;
}

.faq-mini-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.faq-mini-form input {
  flex: 1;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(26, 18, 40, 0.15);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  min-width: 160px;
  outline: none;
  transition: border-color 0.15s;
}
.faq-mini-form input::placeholder { color: var(--subtle); }
.faq-mini-form input:focus { border-color: var(--ember); }

.faq-mini-form button {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--ember);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.faq-mini-form button:hover { background: var(--ember-light); }

.faq-mini-thanks {
  display: none;
  font-size: 13px;
  color: var(--ember);
  font-weight: 500;
  margin-top: 10px;
}
.faq-mini-thanks.visible { display: block; }

/* ── NEWSLETTER UNTEN (stark, Ember) ── */
.newsletter-bottom {
  background: var(--ember);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.newsletter-bottom-fizz {
  margin-bottom: 20px;
}

.newsletter-bottom h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-bottom .nb-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.nb-form-wrap { /* wrapper to hide on submit */ }

.nb-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
}

.nb-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  min-width: 180px;
  outline: none;
  transition: background 0.15s;
}
.nb-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.nb-form input:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.nb-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* Nach Submit */
.nb-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.nb-thanks.visible { display: flex; }

.nb-thanks-fizz {
  animation: fizz-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes fizz-pop {
  0%   { transform: scale(0.75); opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

.nb-thanks-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  color: #fff;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 0.5px solid rgba(26, 18, 40, 0.08);
  padding: 36px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--subtle);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 13px;
  color: var(--subtle);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 0.5px solid rgba(26, 18, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtle);
  transition: all 0.15s;
}
.footer-social a:hover {
  border-color: var(--ember);
  color: var(--ember);
}
.footer-social svg { width: 15px; height: 15px; }

.footer-tagline {
  border-top: 0.5px solid rgba(26, 18, 40, 0.06);
  padding: 16px 0;
  text-align: center;
  font-size: 11px;
  color: var(--subtle);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .tools-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nt-form { flex-direction: column; }
  .nb-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── Empfehlungen ── */
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.reco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reco-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(22,16,31,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.reco-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22,16,31,0.11);
}
.reco-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  background: #FFF0EC;
  border-radius: 20px;
  padding: 3px 10px;
  align-self: flex-start;
}
.reco-emoji {
  font-size: 2rem;
  line-height: 1;
}
.reco-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}
.reco-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.reco-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: var(--ember);
  color: white;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.reco-btn:hover { background: var(--ember-light); }
.reco-tag--green { background: #EAFAF4; color: #0E7A55; }

/* ── Starter Tools Sektion ── */
.starter-tools-section {
  background: var(--night);
  color: #fff;
}
.starter-tools-section .section-label { color: var(--ember); }
.starter-tools-section .section-title { color: #fff; }
.starter-tools-section .section-sub { color: rgba(255,255,255,0.55); }

.starter-tools-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.starter-tools-fizz {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.35));
}

.starter-tools-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.starter-tools-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.starter-tools-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.starter-tools-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn-outline-ember {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-outline-ember:hover { border-color: var(--ember); color: var(--ember); }

.starter-tools-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 720px) {
  .starter-tools-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .starter-tools-fizz { max-width: 180px; }
  .starter-tools-list li { justify-content: center; }
  .starter-tools-cta { justify-content: center; }
}
.reco-btn--green { background: var(--mint); color: #0E4F36; box-shadow: 0 4px 14px rgba(114,216,176,0.3); }
.reco-btn--green:hover { background: #5DCFA4; }
@media (max-width: 900px) {
  .reco-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .reco-grid { grid-template-columns: 1fr; }
}

/* ── Footer Link Buttons ── */
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-link-btn:hover { color: var(--ember); }

/* ── Modals ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 16, 31, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--bg);
  border-radius: 20px;
  padding: 40px 36px 36px;
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(22,16,31,0.18);
}
.modal-box h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 20px;
}
.modal-box p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.modal-box p strong { color: var(--text); }
.modal-box a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--subtle);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--subtle); color: var(--text); }
.modal-tagline {
  font-style: italic;
  color: var(--ember) !important;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .modal-box { padding: 32px 20px 24px; }
}

/* ═══════════════════════════════
   ADDITIONS v4 — Monetarisierung
════════════════════════════════ */

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}

/* ── Bots Sektion ── */
.bots-section { background: #F2EEFF; }

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

.bot-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 0.5px solid rgba(26, 18, 40, 0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bot-card:hover {
  box-shadow: 0 8px 32px rgba(26, 18, 40, 0.08);
  transform: translateY(-2px);
}
.bot-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.bot-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bot-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.bot-badge-free     { background: #E8FBF3; color: #1A7558; }
.bot-badge-freemium { background: #EEE9FF; color: var(--lilac); }

.bot-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.bot-handle {
  font-size: 12px;
  color: var(--subtle);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.bot-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.bot-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--ember);
  transition: gap 0.15s;
  text-decoration: none;
}
.bot-link:hover { gap: 9px; }

/* ── Paid Tools Sektion ── */
.paid-section { background: #2D1654; color: #fff; }

.paid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.paid-card {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s;
}
.paid-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.paid-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.paid-price-tag {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
}
.paid-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.paid-card-subline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.55;
}
.paid-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  flex: 1;
}
.paid-card-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.paid-card-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--ember);
  margin-top: 7px;
  flex-shrink: 0;
}
.paid-card-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: var(--ember);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.paid-card-btn:hover { background: var(--ember-light); transform: translateY(-1px); }

/* ── Bundle Sektion ── */
.bundle-section {
  background: var(--ember);
  padding: 80px 0;
}
.bundle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bundle-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.bundle-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.bundle-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 24px;
}
.bundle-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.bundle-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.bundle-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}
.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.bundle-price-main {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.bundle-price-old {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}
.bundle-savings {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.bundle-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}
.bundle-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bundle-pill-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.bundle-pill-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.bundle-pill-total {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bundle-pill-total .bundle-pill-name { color: var(--ember); }
.bundle-total-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ember);
}
.btn-white-solid {
  background: #fff;
  color: var(--ember);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-white-solid:hover { background: #fff5f3; transform: translateY(-1px); }

@media (max-width: 900px) {
  .paid-grid { grid-template-columns: 1fr; }
  .bots-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .bundle-inner { grid-template-columns: 1fr; gap: 28px; }
}

