#alSaasHome {
  margin: 34px auto;
  width: min(1180px, calc(100% - 36px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2a44;
}

.al-saas-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.al-saas-panel {
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 58px rgba(10,31,68,.07);
}

.al-saas-kicker {
  color: #ff6672;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.al-saas-title {
  margin: 8px 0 10px;
  color: #0a1f44;
  font-size: clamp(32px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.055em;
}

.al-saas-text {
  color: #687286;
  line-height: 1.62;
  font-size: 15px;
}

.al-saas-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.al-saas-btn {
  border: 1px solid #e7e8ee;
  background: #fff;
  color: #0a1f44;
  border-radius: 16px;
  padding: 13px 16px;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
}

.al-saas-btn.primary {
  background: #0a1f44;
  border-color: #0a1f44;
  color: #fff;
}

.al-saas-btn.coral {
  background: #ff6672;
  border-color: #ff6672;
  color: #fff;
}

.al-saas-mini-grid {
  display: grid;
  gap: 10px;
}

.al-saas-mini {
  border: 1px solid #e7e8ee;
  border-radius: 18px;
  padding: 14px;
  background: #fbfbfd;
}

.al-saas-mini strong {
  color: #0a1f44;
}

.al-saas-mini span {
  display: block;
  color: #7b8496;
  font-size: 13px;
  margin-top: 4px;
}

.al-saas-section-title {
  margin: 30px 0 14px;
  font-size: 22px;
  letter-spacing: -.03em;
  color: #0a1f44;
}

.al-saas-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.al-saas-plan {
  position: relative;
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 24px;
  padding: 22px;
}

.al-saas-plan.featured {
  border-color: #ffd0d4;
  background: linear-gradient(180deg, #fff, #fff7f8);
}

.al-saas-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff1f2;
  color: #ff6672;
  font-size: 11px;
  font-weight: 950;
}

.al-saas-plan h3 {
  margin: 12px 0 6px;
  color: #0a1f44;
  font-size: 24px;
}

.al-saas-price {
  font-size: 32px;
  color: #0a1f44;
  font-weight: 950;
  letter-spacing: -.04em;
}

.al-saas-price small {
  font-size: 13px;
  color: #7b8496;
}

.al-saas-features {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #536079;
  font-size: 14px;
}

.al-saas-features li::before {
  content: "✓";
  color: #18a957;
  font-weight: 950;
  margin-right: 8px;
}

.al-saas-ad {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto;
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(10,31,68,.08);
  font-family: Inter, system-ui, sans-serif;
}

.al-saas-ad a {
  border-radius: 14px;
  padding: 10px 12px;
  background: #0a1f44;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.al-saas-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,31,68,.38);
  display: grid;
  place-items: center;
  padding: 20px;
}

.al-saas-modal-card {
  width: min(480px, 100%);
  background: #fff;
  border-radius: 26px;
  border: 1px solid #e7e8ee;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(10,31,68,.22);
}

.al-saas-modal-card h3 {
  margin: 0 0 12px;
  color: #0a1f44;
  font-size: 24px;
}

.al-saas-field {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.al-saas-field label {
  font-size: 12px;
  font-weight: 900;
  color: #0a1f44;
}

.al-saas-field input,
.al-saas-field select {
  border: 1px solid #e7e8ee;
  border-radius: 15px;
  padding: 12px;
  font: inherit;
  outline: none;
}

.al-saas-field input:focus,
.al-saas-field select:focus {
  border-color: #ffd0d4;
  box-shadow: 0 0 0 4px rgba(255,102,114,.10);
}

.al-saas-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .al-saas-hero,
  .al-saas-pricing {
    grid-template-columns: 1fr;
  }
}
