/* ═══════════════════════════════════════════════════════════
   SECTIONS — Tickers, Testimonials, Contact, CTA, Footer
   ═══════════════════════════════════════════════════════════ */

/* ─── Logo Ticker ─── */
.logo-ticker {
  padding: 60px 24px 40px;
  text-align: center;
}
.logo-ticker-label {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 24px;
}
.ticker-track {
  display: flex; gap: 48px; align-items: center;
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-slide {
  display: flex; gap: 48px; align-items: center;
  animation: ticker 25s linear infinite;
  flex-shrink: 0;
}
.ticker-slide img {
  height: 24px; opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.ticker-slide img:hover { opacity: 0.8; filter: grayscale(0); }

/* Integration logos ticker (benefits section) */
.integrations-ticker {
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden; margin-top: 16px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.int-ticker-row {
  display: flex; gap: 12px;
  animation: intTicker 20s linear infinite;
  flex-shrink: 0;
}
.int-ticker-row.reverse { animation-direction: reverse; }
.int-ticker-row img {
  height: 40px; width: 40px;
  border-radius: 10px; background: #fff;
  padding: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.int-ticker-row img:hover { transform: scale(1.15); }

/* ─── Testimonials ─── */
.testimonials { padding: 80px 0; overflow: hidden; }
.testimonials .featured-review {
  max-width: 700px; margin: 0 auto 48px;
  text-align: center; padding: 0 24px;
}
.featured-review blockquote {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600; line-height: 1.35;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.review-info { text-align: left; }
.review-name { font-weight: 600; font-size: 14px; }
.review-role { font-size: 13px; color: var(--text-muted); }

.reviews-ticker-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.reviews-ticker-track {
  display: flex; gap: 16px;
  animation: reviewTicker 40s linear infinite;
  width: max-content;
}
.review-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.4s cubic-bezier(.44,0,.56,1);
}
.review-card:hover { transform: translateY(-4px); }
.review-card blockquote {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 20px;
  font-weight: 400;
}

/* ─── Contact Section ─── */
.community {
  max-width: var(--max-width); margin: 60px auto 0;
  padding: 60px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-xl);
}
.community-header { text-align: center; margin-bottom: 40px; }
.community-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.community-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform 0.4s cubic-bezier(.44,0,.56,1);
}
.community-card:hover { transform: translateY(-4px); }
.community-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.community-logo { display: flex; align-items: center; gap: 10px; }
.community-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
}
.community-followers { font-size: 13px; color: var(--text-muted); }
.community-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.community-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 20px;
}

/* Contact card (tabbed form) */
.contact-card-inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.contact-tabs {
  display: flex; gap: 4px;
  background: var(--bg-primary);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content; margin: 0 auto 32px;
}
.contact-tabs button {
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 500;
  background: transparent; color: var(--text-muted);
  transition: all 0.3s cubic-bezier(.44,0,.56,1);
  display: flex; align-items: center; gap: 8px;
}
.contact-tabs button.active {
  background: #fff; color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.contact-tabs button svg { flex-shrink: 0; }
.contact-pane { display: none; }
.contact-pane.active { display: block; }
.contact-meet-info { text-align: center; margin-bottom: 28px; }
.contact-meet-info .meet-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-meet-info h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.contact-meet-info p {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  max-width: 440px; margin: 0 auto;
}

/* ─── CTA Banner ─── */
.cta {
  max-width: var(--max-width); margin: 60px auto 0;
  padding: 0 24px;
}
.cta-inner {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.cta-inner p {
  font-size: 15px; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; position: relative; z-index: 1;
}
.cta-inner .btn-primary {
  position: relative; z-index: 1;
  background: #fff; color: var(--text-primary);
}
.cta-cloud {
  position: absolute;
  bottom: -20px;
  width: 480px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.cta-cloud.left { left: -160px; }
.cta-cloud.right { right: -160px; }

/* ─── Footer ─── */
.footer-backdrop {
  background: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 60px;
}
.footer {
  max-width: var(--max-width); margin: 0 auto;
  padding: 60px 24px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-muted);
  margin-top: 12px; max-width: 280px; line-height: 1.55;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { background: var(--border); transform: translateY(-2px); }
.footer-col h5 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: var(--text-muted);
  transition: color 0.4s cubic-bezier(.44,0,.56,1);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px; color: var(--text-muted);
  transition: color 0.4s cubic-bezier(.44,0,.56,1);
}
.footer-bottom-links a:hover { color: var(--text-primary); }
