/* === Pricing Page === */

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 2px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 2px;
}
.lang-switch a {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  color: #64748b;
  transition: all 0.2s;
}
.lang-switch a.lang-active {
  background: #fff;
  color: #1a1a2e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.lang-switch a:hover:not(.lang-active) { color: #6366f1; }

.nav-active { color: #6366f1 !important; font-weight: 600 !important; }

/* Price Hero */
.price-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.08) 0%, transparent 60%);
}
.price-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}
.price-hero-sub {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Hero CTAs */
.price-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.price-hero-note {
  font-size: 0.85rem;
  color: #94a3b8;
}

.price-questions {
  margin-top: 24px;
}
.questions-link {
  color: #6366f1;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.questions-link:hover { color: #4f46e5; }

@media (max-width: 768px) {
  .price-hero h1 { font-size: 2rem; }
  .price-hero-ctas { flex-direction: column; align-items: center; }
  .price-hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* === Comparison Strip === */
.comparison-strip {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.comparison-strip h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a1a2e;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.comparison-card {
  background: #fff;
  border: 1px solid #e0e7ff;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.comparison-card:hover {
  box-shadow: 0 6px 24px rgba(99,102,241,0.1);
}
.comparison-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef2ff;
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.comparison-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.comparison-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .comparison-strip h2 { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .comparison-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* === Feature List === */
.feature-list {
  padding: 40px 0 80px;
}
.fl-all-included {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 32px;
  padding: 12px 0;
  background: #f0f0ff;
  border-radius: 10px;
  border: 1px solid #e0e7ff;
}

.fl-category {
  margin-bottom: 8px;
}
.fl-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.fl-category-header:hover {
  background: #f1f5f9;
}
.fl-category-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: transform 0.25s;
}
.fl-category.collapsed .fl-toggle-icon {
  transform: rotate(-90deg);
}
.fl-category.collapsed .fl-category-header {
  border-radius: 12px;
  margin-bottom: 24px;
}
.fl-included-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6366f1;
}

.fl-category-body {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.fl-category.collapsed .fl-category-body {
  max-height: 0 !important;
  overflow: hidden;
}

.fl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}
.fl-item:hover { background: #fafbff; }
.fl-item:last-child {
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
  margin-bottom: 24px;
}

.fl-info {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.fl-name {
  font-size: 0.95rem;
  color: #334155;
}

.fl-tooltip {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.fl-tooltip:hover { color: #6366f1; }

.tooltip-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 14px 18px;
  border-radius: 10px;
  max-width: 380px;
  min-width: 260px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: tooltipIn 0.2s ease;
}
.tooltip-popup::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #1a1a2e;
  transform: rotate(45deg);
  border-radius: 2px;
}
@keyframes tooltipIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.fl-check {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .fl-category-header { padding: 14px 16px; }
  .fl-item { padding: 12px 16px; }
  .fl-name { font-size: 0.85rem; }
  .tooltip-popup { max-width: 280px; min-width: 200px; left: -40px; }
}

/* === Trial Signup Section === */
.trial-signup {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f1a, #1a1a3e);
  color: #fff;
  text-align: center;
}
.trial-signup h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.trial-signup > .container > p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 36px;
}

.trial-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trial-form input,
.trial-form select {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  width: 100%;
}
.trial-form input::placeholder { color: #64748b; }
.trial-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.trial-form select option {
  background: #1a1a2e;
  color: #fff;
}
.trial-form input:focus,
.trial-form select:focus {
  border-color: #6366f1;
}
.trial-form .btn {
  margin-top: 4px;
}

.trial-note {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 14px;
}

.trial-success {
  display: none;
  padding: 32px;
  text-align: center;
}
.trial-success.show {
  display: block;
}
.trial-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.trial-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.trial-success p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.trial-error {
  display: none;
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 8px;
}
.trial-error.show {
  display: block;
}

@media (max-width: 768px) {
  .trial-signup h2 { font-size: 1.6rem; }
  .trial-form { max-width: 100%; }
}
