/* ── LP.CSS — Landing Page extras for CoacherTech ── */

/* HEADER: lang toggle + nav-right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.lang-toggle:hover {
  background: rgba(56,189,248,.15);
  color: #38bdf8;
}

/* HERO — bot card extras */
.bot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bot-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 180px !important;
  height: 180px !important;
}

/* Chat bubbles floating inside tech-card */
.chat-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(15,23,42,.92);
  border: 1px solid rgba(56,189,248,.28);
  color: #bae6fd;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  animation: floatBubble 6s ease-in-out infinite;
}

.b1 { bottom: 28px; left: 18px;  animation-delay: 0s;   }
.b2 { top:    28px; right: 18px; animation-delay: 2s;   }
.b3 { bottom: 72px; right: 22px; animation-delay: 4s;   }

@keyframes floatBubble {
  0%   { opacity: 0; transform: translateY(8px);  }
  20%  { opacity: 1; transform: translateY(0);    }
  80%  { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* Integrations strip */
.integrations {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.integrations span {
  font-size: 13px;
  color: #64748b;
  letter-spacing: .5px;
}

.int-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.int-badge {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  transition: border-color .2s, color .2s;
}

.int-badge:hover {
  border-color: rgba(56,189,248,.4);
  color: #38bdf8;
}

/* CARD icon */
.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* SECTION ALT */
.section-alt {
  background: rgba(15,23,42,.4);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ECOMMERCE GRID */
.ecom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ecom-card {
  padding: 32px;
  border-radius: 26px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.09);
  transition: border-color .25s, transform .25s;
}

.ecom-card:hover {
  border-color: rgba(56,189,248,.4);
  transform: translateY(-4px);
}

.ecom-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: .5px;
}

.ecom-logo.ml { background: linear-gradient(135deg, #ffe600, #f5a623); color: #1a1a1a; }
.ecom-logo.sh { background: linear-gradient(135deg, #96bf48, #5e8e3e); color: #fff;    }
.ecom-logo.ps { background: linear-gradient(135deg, #df0067, #9b0048); color: #fff;    }

.ecom-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.ecom-card p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 14px;
  color: #94a3b8;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* PLANS GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.plan-card {
  padding: 32px;
  border-radius: 26px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
  transition: border-color .25s, transform .25s;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-featured {
  border-color: rgba(56,189,248,.45);
  background: rgba(15,23,52,.9);
  box-shadow: 0 0 0 1px rgba(56,189,248,.15), 0 30px 70px rgba(37,99,235,.2);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.plan-tag {
  font-size: 13px;
  color: #64748b;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

.chk  { color: #38bdf8; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.chk.plus { color: #facc15; }
.x    { color: #475569;  font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.plan-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
}

.plans-note {
  text-align: center;
  color: #64748b;
  font-size: 15px;
  margin-top: 36px;
}

.plans-note a {
  color: #38bdf8;
  text-decoration: underline;
}

/* FOOTER INNER */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #475569;
}

.footer-links a:hover {
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ecom-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bot-card {
    min-height: 300px;
  }
}