/* ==========================================================================
   TAGEBIS HOME.CSS - Startseite (Freundlich, Fokussiert, TageBis-Blau)
   Inkl. einheitlichem Glasblasen-Design & mobilem Snap-Carousel
   ========================================================================== */

.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  border-radius: 24px;
  transition: all 0.25s ease;
}

/* HERO */
.hero-section {
  padding: 3.5rem 1.5rem 4.5rem;
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--primary-subtle);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.hero-title-highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

/* ==========================================================================
   INLINE CREATOR BOX (SOFORT EIGENEN ZÄHLER EINTIPPEN)
   ========================================================================== */
.inline-creator-box {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 1.8rem;
  text-align: left;
}

.creator-header {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.creator-step {
  color: var(--primary);
  font-weight: 800;
}

.creator-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-input-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}
.form-input-group input {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input-group input:focus {
  border-color: var(--primary);
}
.form-input-group input {
  font-size: 16px !important; /* Verhindert Auto-Zoom auf iPhones */
}

.btn-creator-submit {
  grid-column: span 2;
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-creator-submit:hover {
  background: var(--primary-hover);
}

/* ==========================================================================
   VORSCHAU-KARTE (HERO LIVE-EVENT)
   ========================================================================== */
.hero-card-wrapper {
  max-width: 660px;
  margin: 0 auto 3rem;
  width: 100%;
}

.preview-switcher {
  display: inline-flex;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1rem;
  gap: 4px;
}

.switch-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.switch-tab.active {
  background: var(--bg-surface);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.live-event-card {
  padding: 2.2rem;
  text-align: left;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Kategorie-Pille als Glasblase */
.card-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.card-status-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #10b981;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; }
}

.card-event-title {
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 900;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   TICKER-KACHELN ALS GLASBLASEN
   ========================================================================== */
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 1.5rem;
}

.ticker-col {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 20px !important;
  padding: 1.05rem 0.5rem !important;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ticker-col:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.ticker-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.ticker-highlight .ticker-number {
  color: #38bdf8 !important;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
}

.ticker-unit {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 800 !important;
  margin-top: 6px;
  letter-spacing: 0.7px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   FORTSCHRITTSBALKEN & ZIELDATUM
   ========================================================================== */
.card-progress {
  margin-bottom: 1.5rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa) !important;
  border-radius: 999px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 9999px !important;
  padding: 0.55rem 1.1rem !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 0.82rem;
  color: #ffffff !important;
  font-weight: 700;
}
.progress-meta span {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

/* ==========================================================================
   VIRALE SHARING-ZEILE
   ========================================================================== */
.instant-share-row {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.share-row-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.share-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.btn-share-whatsapp, .btn-share-facebook, .btn-share-copy {
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-share-whatsapp:active, .btn-share-facebook:active, .btn-share-copy:active {
  transform: scale(0.98);
}

.btn-share-whatsapp { background: #25D366; color: #ffffff; }
.btn-share-facebook { background: #1877F2; color: #ffffff; }
.btn-share-copy { background: rgba(255, 255, 255, 0.2); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); }

.copy-success-hint {
  font-size: 0.8rem;
  color: #34d399;
  font-weight: 700;
  margin-top: 0.6rem;
  text-align: center;
}

.btn-card-create {
  width: 100%;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px dashed rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  padding: 0.95rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.btn-card-create:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* SÄULEN, PORTALE, PREISE */
.pillars-section, .portals-section, .pricing-section, .faq-section, .final-cta-section {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.pillar-card { padding: 2.2rem; display: flex; flex-direction: column; }
.pillar-icon-box {
  width: 50px; height: 50px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 1.5rem; background: var(--primary-subtle);
}
.pillar-title { font-size: 1.3rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.9rem; }
.pillar-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.pillar-checklist {
  list-style: none; margin-bottom: 2rem; display: flex;
  flex-direction: column; gap: 0.6rem; font-size: 0.88rem; color: var(--text-main);
}
.pillar-link {
  margin-top: auto; color: var(--primary); font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}

/* PORTALE */
.portals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.portal-box { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.portal-emoji { font-size: 2rem; line-height: 1; }
.portal-info h4 { color: var(--text-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.portal-info p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }

/* PREISE */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.pricing-card { padding: 2.5rem 2rem; display: flex; flex-direction: column; position: relative; }
.featured-plan { border-color: var(--primary); box-shadow: 0 15px 35px var(--primary-glow); }
.featured-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #ffffff; padding: 0.3rem 1.1rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 800;
}
.plan-name { font-size: 1.4rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.4rem; }
.plan-target { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.plan-price { margin-bottom: 0.5rem; }
.price-val { font-size: 2.4rem; font-weight: 800; color: var(--text-main); }
.price-period { font-size: 0.85rem; color: var(--text-muted); }

.savings-pill {
  display: flex; align-items: center; gap: 8px; background: #ecfdf5;
  border: 1px solid #a7f3d0; color: #065f46; padding: 0.45rem 0.8rem;
  border-radius: 10px; font-size: 0.82rem; margin-bottom: 1rem;
}
body.dark-theme .savings-pill {
  background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.25); color: #34d399;
}
.discount-tag {
  background: #059669; color: #ffffff; font-weight: 800;
  font-size: 0.75rem; padding: 0.15rem 0.45rem; border-radius: 6px;
}
.chf-hint { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.8rem; margin: 1.2rem 0 2rem; font-size: 0.9rem; color: var(--text-main);
}
.plan-btn { margin-top: auto; }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-arrow {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.faq-card[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-answer strong {
  color: var(--text-main);
}

/* ==========================================================================
   GROSSER PRIMARY-BUTTON & FINAL CTA BANNER
   ========================================================================== */
.btn-primary-lg {
  background: var(--primary);
  color: #ffffff !important;
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px var(--primary-glow);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-primary-lg:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--primary-glow);
}

.final-cta-card {
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--primary-subtle) 100%);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.final-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}
.final-cta-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & SNAP-CAROUSEL
   ========================================================================== */
@media (max-width: 768px) {
  .hero-section { padding: 2rem 1rem 3rem; }
  .inline-creator-box { padding: 1.2rem; }
  .creator-form { grid-template-columns: 1fr; }
  .btn-creator-submit { grid-column: 1; }
  .live-event-card { padding: 1.5rem 1.2rem; }
  .ticker-grid { gap: 6px; }
  .ticker-col { padding: 0.75rem 0.25rem !important; }
  .ticker-number { font-size: 1.7rem !important; }

  .progress-meta {
    border-radius: 14px !important;
    padding: 0.6rem 0.9rem !important;
    font-size: 0.78rem;
  }
  
  .share-buttons-grid {
    grid-template-columns: 1fr;
  }

  /* 1. HORIZONTALER SNAP-SCROLL FÜR SÄULEN & TARIFE */
  .pillars-grid,
  .pricing-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding: 0 1.5rem !important;
    gap: 1rem !important;
    padding: 0.5rem 1.5rem 1.5rem !important;
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pillars-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pillar-card,
  .pricing-card {
    flex: 0 0 84% !important;
    max-width: 84% !important;
    scroll-snap-align: center !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
  }

  /* 2. THEMEN-PORTALE: KOMPAKTES 2x2 RASTER */
  .portals-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  
  .portal-box {
    padding: 1rem 0.85rem !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: left !important;
  }

  .portal-emoji {
    font-size: 1.6rem !important;
  }

  .portal-info h4 {
    font-size: 0.88rem !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
  }

  .portal-info p {
    display: none !important;
  }
}

.btn-share-story {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-share-story:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
}

@media (max-width: 600px) {
  .share-buttons-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   KALENDER-ICON (FÜR LIGHT & DARK MODE)
   ========================================================================== */
.form-input-group.date-group {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: 2;
}

.form-input-group.date-group::after {
  content: '📅';
  position: absolute;
  right: 14px;
  top: 35px;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.75;
}

body.dark-theme .form-input-group.date-group::after {
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
  opacity: 0.9;
}

/* ==========================================================================
   FOOTER-STYLING (EXAKT IDENTISCH MIT CHANNEL.HTML)
   ========================================================================== */
.site-footer {
  background: var(--bg-surface, #ffffff);
  border-top: 1px solid var(--border-color, #e2e8f0);
  padding: 36px 0 20px !important;
  margin-top: auto;
  width: 100%;
}

.site-footer .footer-container {
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.footer-links-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  width: 100% !important;
  margin-bottom: 4px !important;
}
@media (min-width: 600px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}
@media (min-width: 960px) {
  .footer-links-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.15fr !important;
    gap: 30px !important;
  }
}

.footer-col {
  display: flex !important;
  flex-direction: column !important;
}

.footer-col h5 {
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: var(--text-main, #0f172a) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
}

.footer-brand-text {
  font-size: 0.82rem !important;
  color: var(--text-muted, #64748b) !important;
  line-height: 1.5 !important;
  margin: 4px 0 0 0 !important;
  max-width: 290px !important;
}

/* Links: Kompakter Zeilenabstand ohne aufgeblähte Margins */
.footer-col a {
  color: var(--text-muted, #64748b) !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  text-decoration: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: color 0.15s ease !important;
}

.footer-col a:hover {
  color: var(--primary, #2563eb) !important;
}

/* Vollflächiger Rechtlicher Hinweis */
.footer-disclaimer-box {
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 18px 0 14px 0 !important;
  padding: 10px 14px !important;
  background: var(--bg-subtle, #f8fafc) !important;
  border: 1px solid var(--border-color, #e2e8f0) !important;
  border-radius: 10px !important;
  font-size: 0.76rem !important;
  color: var(--text-muted, #64748b) !important;
  line-height: 1.45 !important;
  text-align: center !important;
  display: block !important;
}

.footer-bottom {
  border-top: 1px solid var(--border-color, #e2e8f0) !important;
  padding-top: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  font-size: 0.76rem !important;
  color: var(--text-muted, #64748b) !important;
  text-align: center !important;
  width: 100% !important;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row !important;
    text-align: left !important;
  }
}
.footer-trust-tags {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}