/* ─── Kalan School OS — Addons & Responsiveness (WhatsApp, One-Shot, Mobile) ─── */

/* ─── 1. WhatsApp Action Buttons ─────────────────────────────── */
.hero-actions-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  background-color: #16a34a;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
  transition: all 0.15s ease;
}

.btn-hero-whatsapp:hover {
  background-color: #15803d;
  transform: translateY(-1px);
  color: #ffffff;
}

.bottom-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* ─── 2. Licence Unique / One-Shot Dedicated Card ────────────── */
.oneshot-licence-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
  margin-top: 3rem;
  text-align: left;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.oneshot-licence-header {
  margin-bottom: 2rem;
  max-width: 780px;
}

.oneshot-badge {
  display: inline-block;
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.oneshot-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.oneshot-desc {
  font-size: 0.90rem;
  color: #94a3b8;
  line-height: 1.6;
}

.oneshot-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  margin-bottom: 2.25rem;
}

.oneshot-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.oneshot-benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.oneshot-benefit-item strong {
  display: block;
  font-size: 0.88rem;
  color: #f8fafc;
  margin-bottom: 0.15rem;
}

.oneshot-benefit-item p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.oneshot-action-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.btn-oneshot-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #16a34a;
  color: #ffffff;
  padding: 0.80rem 1.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.90rem;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition: all 0.15s ease;
}

.btn-oneshot-cta:hover {
  background: #15803d;
  transform: translateY(-1px);
  color: #ffffff;
}

/* ─── 3. Mobile Responsive Enhancements ──────────────────────── */
@media (max-width: 900px) {
  .oneshot-benefits-grid {
    grid-template-columns: 1fr;
  }

  .oneshot-licence-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-actions-group,
  .bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-whatsapp,
  .btn-oneshot-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-h1 {
    font-size: 2.1rem;
  }

  .landing-sec-title {
    font-size: 1.7rem;
  }

  .landing-nav-links {
    display: none;
  }
}
